/* LOGIN PAGE SPECIFIEKE STYLES */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 70px);
    padding: 40px 20px;
}

.login-container {
    width: 100%;
    max-width: 460px;
    padding: 50px 45px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: white;
    text-align: center;
    animation: slideUp 0.4s ease-out;
}

.login-container h2 {
    margin: 0 0 35px 0;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.5px;
}

.login-container .form-group {
    margin-bottom: 24px;
    text-align: left;
}

.login-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.login-container input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container input:focus {
    border-color: #105dd8;
    outline: none;
    box-shadow: 0 0 0 4px rgba(16, 93, 216, 0.1);
    background-color: #ffffff;
}

.login-container .forgot-password {
    display: block;
    text-align: right;
    margin: -10px 0 24px 0;
    font-size: 14px;
    color: #105dd8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.login-container .forgot-password:hover {
    color: #0c4cb6;
    text-decoration: underline;
}

.login-container .login-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #105dd8 0%, #0c4cb6 100%);
    border: none;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(16, 93, 216, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.login-container .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 93, 216, 0.4);
    background: linear-gradient(135deg, #0c4cb6 0%, #0a3d8f 100%);
}

.login-container .login-btn:active {
    transform: translateY(0);
}

.error-message {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fca5a5;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15);
}

.error-message i {
    font-size: 16px;
}