body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #a0cafd 0%, #dde6f0 100%);
    margin: 0;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background-color: #ebeff2;
    padding: 40px 40px 45px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    width: 360px;
    text-align: center;
    border-top: 4px solid #4a90d9;
}

.login-logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 0 auto 10px auto;
    display: block;
}

.login-box h2 {
    color: #1f3a5f;
    margin-bottom: 4px;
    font-size: 24px;
    letter-spacing: 0.3px;
}

.login-box p {
    color: #a0a8b4;
    margin-top: 0;
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
}

.input-group {
    text-align: left;
    margin-bottom: 16px;
}

.input-group label {
    display: block;
    font-size: 12px;
    color: #5a6472;
    margin-bottom: 6px;
    font-weight: 600;
}

.login-box input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e6ea;
    border-radius: 8px;
    background-color: #f8f9fb;
    color: #2c3e50;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.login-box input::placeholder {
    color: #b0b8c0;
}

.login-box input:focus {
    outline: none;
    border-color: #4a90d9;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

.login-box button {
    width: 100%;
    padding: 13px;
    margin-top: 12px;
    background: linear-gradient(135deg, #4a90d9, #3a7bc8);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.login-box button:hover {
    box-shadow: 0 4px 12px rgba(74, 144, 217, 0.35);
}

.login-box button:active {
    transform: scale(0.97);
}

.error-msg {
    background-color: #fdecea;
    color: #c0392b;
    font-size: 13px;
    margin-top: 16px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #f5c6c0;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #a0cafd 0%, #dde6f0 100%);
    margin: 0;
}

.app-wrapper {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
}
