/* Simple Smooth Login Design */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0d6efd;
    --primary-hover: #0b5ed7;
    --text-main: #1e293b;
    --text-secondary: #64748b;
    --bg-color: #f1f5f9;
    --card-bg: #ffffff;
    --input-bg: #f8fafc;
    --border-color: #e2e8f0;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    /* Subtle smooth gradient background */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease;
}

.login-box:hover {
    transform: translateY(-5px);
}

.brand-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 28px;
}

.brand-logo img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.login-header h2 {
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 700;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
}

/* Input Group - Smooth Interactions */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: color 0.3s ease;
}

.input-group input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 2px solid transparent;
    background: var(--input-bg);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.input-group input:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
    outline: none;
}

.input-group input:focus+i {
    color: var(--primary-color);
}

.input-group input::placeholder {
    color: #cbd5e1;
}

/* Button - Smooth Hover */
.login-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.login-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(13, 110, 253, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

/* Error Message */
.error-msg {
    background: #fef2f2;
    color: #ef4444;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.footer-text {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }
}