

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-card {
    background: white;
    box-shadow: 0 3px 3px 3px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    max-width: 330px;
    text-align: center;
    margin-top: 100px;
}

.login-logo {
    width: 150px;
    margin-bottom: 10px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #00ac98;
}



.login-button {
    background: linear-gradient(to right, var(--brand-primary), var(--brand-secondary));
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.login-button:hover {
    background-color: #008f7a;
}

.forgot-password {
    margin-top: 15px;
}

.forgot-password a {
    color: #7f7f7f;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px){

    .login-card {
        width: 80%;

    }
    
}
