@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Body styling */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #ffffff;
}

/* Section styles */
section {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    overflow: hidden;
}

/* Animated gradient effect */


/* Animation keyframes */
@keyframes animate {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Styling for individual spans */
section span {
    position: relative;
    display: block;
    width: calc(6.25vw - 2px);
    height: calc(6.25vw - 2px);
    background: #ffffff;
    z-index: 1;
    transition: 1.5s;
}



/* Main Content */
.container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    z-index: 1;
    padding: 20px;
    transition: all 0.3s;
    position: absolute;
    transform: translate(-50%, -50%);
    display: block;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    background: none;

}

.contact-link{
    text-align: end;
    color: #000 !important;

}

/* Logo */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    height: 230px;
    width: 230px;
    object-fit: contain;
}

.text-img {
    height: 100px;
    width: 150px;
    object-fit: contain;
    padding: none;
}

/* Buttons */
.login-container{
    margin-left: 5%;
    margin-right: 5%;
}
.btn {
    font-size: 16px;
    width: 240px;
    border-radius: 8px;
    padding: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-info {
    background-color: #500060;
    border-color: #000000;
    color: white;
}

.btn-info:hover {
    background-color: #000001;
    border-color: #000000;
    color: white;
}

.imgg{
    height: 20px;
    width: 20px;
}

/* Custom Checkbox Styles */
.agreement input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #500060;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    margin-right: 8px;
    transition: all 0.2s ease;
}

.agreement input[type="checkbox"]:checked {
    background-color: #500060;
    border-color: #500060;
}

.agreement input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    border-color: none;
    font-size: 14px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Focus state */
.agreement input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(80, 0, 96, 0.2);
}

/* Hover state */
.agreement input[type="checkbox"]:hover {
    border-color: #8101a8;
}

/* Modals */
.modal {
    z-index: 1060;
}

.modal-content {
    background: #ffffff; /* Slightly darker semi-transparent background */
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    
}



.modal-body{
    padding-left:30px;
    background-color: #ffffff;
    margin: none;
}

.modal-header {
    border-bottom: none;
    padding-top: 10px;
    padding-left: 10px;
    background-color: #ffffff;
    padding-bottom: 0px;
    position: sticky;
    border-radius: 20px;
    
  top: 0;

    z-index: 10;
}

.modal-title
{
  font-size: 30px;
}
.modal-footer {
    border-top: none;
    margin: none;
    padding-top: 0%;
    position: sticky;
}

.footer-btn{
  margin: none;
  display: block;
  background-color: #650681 ;
  border: none;
  box-sizing: border-box;
  box-shadow: none;
  padding-top: 5px;
  padding-bottom: 5px;
  width: auto;
  font-size: 18px;
  color: #FFF;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  transition: background-color .2s ease-out;
}

/* Responsive */
@media (max-width: 900px) {
    section span {
        width: calc(10vw - 2px);
        height: calc(10vw - 2px);
    }
}

@media (max-width: 600px) {
    section span {
        width: calc(20vw - 2px);
        height: calc(20vw - 2px);
    }
    
    .container {
        padding: 1.5em;
    }
    
    .text-img {
    height: 100px;
    width: 150px;
    object-fit: contain;
    padding: none;
    margin-bottom: 90px;
}
 
#googleSignInBtn,#signup,#tempAccessBtn
{
    color: #000;
    background-color: #ffffff;
    width: 100%;
}

#signin
{
  width: 100%;
}

}

@media (max-width: 768px) {
    .container {
        min-height: 90vh;
        padding: 1.5em;
    }
    
    .logo-container {
        margin-top: 40px;
    }
    
    .login-container {
        margin-bottom: 20px;
        text-align: center;
    }

    .dflex{
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* This pushes children to top and bottom */
    min-height: 80vh; /* Adjust this value as needed */
    padding-bottom: 50px;
    }
}


/* Custom Red Popup Styles - Will override any browser alerts */
.floating-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #f44336;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(20px);
  z-index: 10000 !important;
}

.floating-notification.show {
  opacity: 1;
  transform: translateY(0);
}


@keyframes popIn {
    0% { opacity: 0; transform: translate(-50%, -40%); }
    100% { opacity: 1; transform: translate(-50%, -50%); }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

#googleSignInBtn,#signup,#tempAccessBtn
{
    color: #000;
    background-color: #ffffff;
    align-items: center;
}

#googleSignInBtn:hover,#signup:hover,#tempAccessBtn:hover
{
  background-color:#500060;
  color: #FFF;

}
body {
  background-color: #ffffff;
  background-image: radial-gradient(#6a4c93 1px, transparent 1px);
  background-size: 20px 20px;
}

h2{
color: #500060;
font-size: 20px;
}

.close:hover{
color: #000000 !important;
    transform: scale(1.1); /* Grows to 110% size */
    transition: transform 0.2s ease;
    border: none !important;
    display: none;
}

.form-control{

  display: block;
  margin: 0;
  background-color: #6003967f;
  border-radius: 40px;
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: 45px;
  font-size: 16px;
  color: #000000;
  border: #000000 solid 0.5px;
  border-radius: 12px;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  transition: box-shadow .2s linear, border-color .25s ease-out;
}

.form-control:focus{
    outline: none;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.322);
  border: dashed 2.5px #000000;
}

