 body {
    background: linear-gradient(180deg, #00B6CE 0%, #00CBB3 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
}
.circle {
    position: fixed;
    width: 300px;
    height: 300px;
    background: linear-gradient(90deg, #CF553B 0%, #FF8972 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(0%, -120%);
    z-index: 0;
}
.login-container {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}
.login-container img {
    text-align: center;
    max-width: 30%; height: auto;
}
.login-container h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.form-group {
    text-align: left;
}
.form-check {
    text-align: left;
}
.forgot-password {
    text-align: right;
}
.contact-link {
    margin-top: 20px;
    font-size: 0.9rem;
}
.footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: white;
    text-align: center;
}
.checkbox-container {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.checkbox-container__checkbox-label {
    margin-bottom: 0px;
}
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.forgot-password-container__label{
    color: #4e5e6a;
}
.login-btn{
    text-align: right;
    margin: 10px 0;
    border-radius: 5px;
}

.btn{
    border-radius: 5px;
    font-size: 13px;
    border:1px solid transparent;
}

/* Media query for smaller screens */
@media screen and (max-width: 600px) {
    .login-container {
        padding: 30px; /* Adjust padding for smaller screens */
        max-width: 90%; /* Adjust max-width for smaller screens */
        margin: auto; /* Center the container horizontally */
    }
}
.password-input-container {
    position: relative;
}
.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
}
.password-toggle-icon:hover {
    color: #343a40;
}
.error-message {
    color: #dc3545;
    font-size: 0.8em;
}
.form-control {
    background: #fff;
    border-radius: 0;
    border: 1px solid #dce1e4;
    box-shadow: none!important;
    font-size: 13px;
    padding: 6px 10px!important;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.btn-primary {
    background-color: #00CB9A;
    border-color: #00CB9A;
    color: #fff;
}

.text-primary-dark {
    color: #0D987F;
}