* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Sora', sans-serif;
    background: #f4f5f9;
    color: #222;
}

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

.login-card {
    background: #fff;
    width: 100%;
    max-width: 400px;
    padding: 40px 36px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.login-heading {
    text-align: center;
    margin: 0 0 6px;
    font-weight: 600;
    font-size: 1.5rem;
}

.login-desc {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    margin: 0 0 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #444;
}

.form-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color .15s;
}

.form-group input:focus {
    border-color: #5b5fed;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #5b5fed;
    color: #fff;
}

.btn-primary:hover {
    background: #4649c9;
}

.alert {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
}

.alert-danger {
    background: #fdecea;
    color: #b3261e;
    border: 1px solid #f5c2c0;
}
