.logo1 {
    width: 20vw; /* Ensure the logo doesn't exceed its container */
    height: auto; /* Maintain aspect ratio */
}
.logo { 
    height:50px;
  }

/* Navbar styles */
.navbar {
    background-color: black;
    height: 10vh; /* Adjusted height for responsiveness */
}

.navbar-brand {
    margin-left: 50%; /* Center the brand */
    transform: translateX(-50%);
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
    .navbar {
        height: 6vh; /* Adjusted height for responsiveness */
    }
    .navbar-brand1 {
        width: 100%; /* Full width for smaller screens */
        margin-left: 50%;
        transform: translateX(-26%);
    }
    .inner-col-first {
        width: 100%; /* Full width for smaller screens */
        margin-top: 1.5vw;
        font-size: 20px; /* Adjusted font size for smaller screens */
        line-height: 35px; /* Adjusted line height for smaller screens */
    }
}

/* Page title styles */
.page-title {
    text-align: center;
    font-family: Anton;
    margin-top: 5vw; /* Adjusted margin for responsiveness */
    font-size: 50px; /* Adjusted font size for responsiveness */
    color: white; /* Adjusted text color */
}

/* Sub-heading styles */
.sub-heading {
    font-family: Inter;
    text-align: center;
    line-height: 33px;
    font-size: 20px; /* Adjusted font size for responsiveness */
    color: #FFFFFFCC; /* Adjusted text color */
}

/* Content box styles */
.content-box {
    width: 100%;
    max-width: 600px;
    border-radius: 40px;
    background-color: white;
    margin: 20px auto; 
    height: auto;
    padding-top: 1px;
    padding-bottom: 1px;
}


.login {
    margin-top: 20px;
    padding-bottom: 20px;
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
    color: #FFFFFFCC;
}

/* Continue button styles */
.continue-button {
    text-align: center;
    margin-top: 20px;
}
.login button{
   background-color: var(--main-color);
   width: 100%; /* Adjust button width */
   max-width: 600px;
   border-radius: 20px;
   border: none;
}
/* .login button:hover{
    background-color: #7636FF;
} */
.login button:hover{
    background-color: var(--main-color);
}
    /* Disabled state */
.login button:disabled {
    background-color: var(--main-color); /* Light pink */
    cursor: not-allowed;
    /* color:#999999; */
}

/* Active state */
.login button.active {
    background-color: var(--main-color) !important; /* Dark pink */
}
.btn-primary:focus {
    outline: none;
    background-color: var(--main-color) !important; 
  }
.form-control {
    margin: 20px auto;
    padding: 20px;
    height: 50px;
    /* font-size: 1.8vw; */
    font-family: 'Inter';
    /* line-height: 33px; */
    border-radius: 12px; /* Adjust the value as needed */
    color: black;
}
.form-control::placeholder {
    color: #9F9F9F; /* Change the placeholder text color */
}
.form-control:focus {
    box-shadow: none;
    border-color: var(--main-color); /* Border color when selected */
}

.form-control:invalid {
border-color: red; /* Optional: Border color when invalid */
}
/* Media queries for responsiveness */
@media (max-width: 768px) {
    .page-title {
        margin-top: 3vh; /* Adjusted margin for smaller screens 4vw */
        font-size: 38px;
    }
    .sub-heading {
        text-align: center;
        /* margin-left: 50%; */
        margin-top: 0px; /* Adjusted margin for smaller screens */
        line-height: 18px;
        font-size: 16px;
    }
    .content-box {
        border-radius: 20px;
        max-width: 440px;
        width: 100%;
    }
    
    .continue-button {
        text-align: center;
        margin-top: 20px;
    }
    .login button{
       width: 100%; /* Adjust button width */
       max-width: 440px;
    }

    .login {
    margin-top: 10px;
    font-family: 'Inter';
    font-size: 3vw;
    font-weight: 400;
    line-height: 3vw;
    letter-spacing: 0em;
    text-align: center;
    color: #FFFFFFCC;
}
.login p{
    width: 60vw;
    margin: 0 auto; /* Center the paragraph */
    font-size: 16px;
    line-height: 18px;
}
}
@media (max-width: 480px){
    .page-title {
        margin-top: 4vw; /* Adjusted margin for smaller screens */
        font-size: 7.5vw;
        line-height: 8vw;
    }
    .sub-heading {
        margin-top: 0px; /* Adjusted margin for smaller screens */
        line-height: 3.4vw;
        font-size: 3.8vw;
        width: 75vw;
    }
    .login p{
    width: 65vw;
    margin: 0 auto; /* Center the paragraph */
    font-size: 3.4vw;
    line-height: 3.9vw;
    /* background-color: red; */
}

}
.error-message {
    /* display: none; 
    margin-left: 20px;  */
    margin-top: 4px;
}
/* Adjust font size and padding for better readability */
#response-message {
    font-size: 16px; /* Adjust font size as needed */
    padding: 10px; /* Add padding to provide space around the text */
    font-weight: bold; /* Use a bolder font weight for better visibility */
    text-shadow: 1px 1px 1px rgba(186, 29, 29, 0.5); /* Add a subtle text shadow for contrast */
}

/* Adjust background color and text color for better contrast */
.toast {
    background-color: #25a91c; /* Adjust background color as needed */
    color: #fff; /* Adjust text color for better contrast */
}

#errorAlert {
    z-index: 1000; /* Set a high z-index value to ensure the toaster appears over other elements */
} 
.continue-button {
    position: fixed;
    bottom: 10px; /* Adjust distance from the bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 440px;
    text-align: center;
    max-width: 600px;
}
