input#id_username , input#id_password {
    width: 100%;
    margin-top: 5px;
    outline: none;
}


.logo-container {
    position: absolute;
    top: 10px;
    left: 20px;
    display: none;
}

.logo {
    width: 120px;
    height: auto;
    display: none;
} 

body {
    background: linear-gradient(135deg, #59B7B7, #1e5c5c);
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
}

.card .logo {
    width: 60px;
    margin: 0 auto 20px;
    display: block;
}

.card h1 {
    font-size: 24px;
    font-weight: 700;
    color:  #1e5c5c;
    text-align: center;
    margin-bottom: 30px;
}

.form-group label {
    font-weight: 600;
    color: #1e5c5c;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 1px solid #59B7B7;
    border-radius: 10px;
    padding: 12px;
    font-size: 16px;
}

.form-control:focus {
    border-color: #59B7B7;
    box-shadow: 0 0 8px rgba(20, 79, 140, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #59B7B7, #1e5c5c);
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 18px;
    font-weight: 300;
    transition: background-color 0.3s;
}


.btn-primary:hover {
    background-color: linear-gradient(300deg, #59B7B7, #1e5c5c);
}

.text-muted {
    color: #1e5c5c !important;
}

.text-muted:hover {
    text-decoration: underline;
}
