:root {
    --brand-blue: #4d97ff;
    --brand-orange: #ffab19;
    --bg-soft: #f0f4f8;
    --text-dark: #2c3e50;
    --radius: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--bg-soft);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-wrapper {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.login-card {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.logo { width: 160px; margin-bottom: 20px; }

h1 { 
    font-family: 'Fredoka One', cursive; 
    color: var(--brand-blue); 
    font-size: 2rem; 
    margin: 0; 
}

p { color: #95a5a6; font-size: 0.95rem; margin-top: 5px; margin-bottom: 35px; }

/* Input Styling */
.input-group { text-align: left; margin-bottom: 25px; }
.input-group label { 
    display: block; font-weight: 500; font-size: 0.85rem; 
    margin-bottom: 8px; color: var(--text-dark); 
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-container i {
    position: absolute;
    left: 15px;
    color: #bdc3c7;
}

.input-container input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #edf2f7;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: 0.3s;
}

.input-container input:focus {
    border-color: var(--brand-blue);
    outline: none;
    box-shadow: 0 0 0 4px rgba(77, 151, 255, 0.1);
}

/* Button */
.btn-login {
    width: 100%;
    padding: 16px;
    background: var(--brand-orange);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    background: #e69500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 171, 25 Blue, 0.3);
}

.btn-login:disabled { background: #bdc3c7; cursor: not-allowed; }

/* Error Message */
.error-bubble {
    background: #fff5f5;
    color: #e74c3c;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-top: 20px;
    border-left: 4px solid #e74c3c;
    display: none;
    text-align: left;
}