.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 40px 20px;
}

.login-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.login-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.login-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group label span {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control:focus {
    border-color: #bfa86c;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(191,168,108,0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #4b5563;
}

.remember-me input {
    width: 18px;
    height: 18px;
    accent-color: #bfa86c;
    cursor: pointer;
}

.forgot-link {
    font-size: 0.85rem;
    color: #bfa86c;
    text-decoration: none;
    font-weight: 600;
}

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

.btn-login {
    width: 100%;
    padding: 15px;
    background: #bfa86c;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(191,168,108,0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(191,168,108,0.4);
    background: #a8935f;
}

.btn-login i {
    font-size: 1rem;
}

.register-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.register-link p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.register-link a {
    color: #bfa86c;
    font-weight: 700;
    text-decoration: none;
}

.register-link a:hover {
    color: #8b7355;
    text-decoration: underline;
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 5px;
}

@media (max-width: 480px) {
    .login-box {
        padding: 35px 25px;
    }
    
    .login-logo {
        width: 100px;
        height: 100px;
    }
}
