/* ===============================
   LOGIN PAGE SPECIFIC STYLES
   =============================== */
.login-body {
    background: #f4f6fb; /* Matches your dashboard background */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.login-wrapper {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.login-card {
    background: white;
    padding: 40px;
    border-radius: 25px; /* Matches your right-card radius */
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: #1a45b8; /* Matches your calendar title color */
    font-size: 28px;
    margin-bottom: 8px;
}

.login-header p {
    color: #555;
    font-size: 15px;
}

/* Box Selection Styling */
.role-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.role-box {
    flex: 1;
    background: #ffffff;
    border: 2px solid #e0e4ec;
    border-radius: 15px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.role-icon {
    font-size: 24px;
}

.role-name {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

/* Active State for Role Selection */
.role-box:hover {
    border-color: #a8bcf8;
}

.role-box.active {
    border-color: #3e66ff;
    background: #f0f4fc; /* Light blue tint */
}

.role-box.active .role-name {
    color: #3e66ff;
}

/* Inputs */
.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #d1d5df;
    border-radius: 30px; /* Matches your topbar search box */
    font-size: 15px;
    outline: none;
    transition: border 0.2s;
}

.input-group input:focus {
    border-color: #3e66ff;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 13px;
    color: #555;
}

.forgot-password {
    color: #3e66ff;
    text-decoration: none;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Submit Button */
.login-submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: #3e66ff;
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.login-submit-btn:hover {
    background: #2b4acc;
}