/* Reset and base styles */
body {
    background-image: url('/static/image/PTLT_bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Login card */
.login-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Header section */
.login-header {
    background-color: #661e1e;
    color: white;
    padding: 24px;
    text-align: center;
}

/* Form labels */
.form-label {
    margin-top: 15px;
    font-weight: 600;
}

/* Forgot password link */
.forgot-password {
    font-size: 13px;
    text-align: right;
    display: block;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #4c3fd1;
    text-decoration: none;
}

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

/* Login button */
.btn-login {
    background-color: #661e1e;
    color: white;
}

.btn-login:hover {
    background-color: #a74545;
    color: white;
}


#togglePassword {
    border-left: none;
}

#togglePassword:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.input-group .form-control:focus {
    border-right: 1px solid #86b7fe;
}

.input-group .btn-outline-secondary {
    color: #6c757d;
    border-color: #ced4da;
}

.input-group .btn-outline-secondary:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
}
