* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #21182F;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card {
    background: #271F37;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
    max-width: 420px;
    width: 100%;
}

h1 {
    font-size: 24px;
    color: #92A0FE;
    margin-bottom: 8px;
    font-weight: 700;
}

p {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #64748B;
    margin-bottom: 6px;
}

.form-group input {
    padding: 10px 14px;
    border: 1.5px solid #403c45;
    border-radius: 8px;
    font-size: 14px;
    color: #878e97;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #352d46;
}

.form-group input:focus {
    border-color: #86a4e4;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder {
    color: #94A3B8;
}

.btn {
    background-color: #BDA9FF;
    color: #000000;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    width: 100%;
}

.btn:hover {
    background-color: #6f7ac1;
}

.btn:active {
    transform: scale(0.98);
}

.btn:disabled {
    background-color: #94A3B8;
    cursor: not-allowed;
}

.status {
    margin-top: 16px;
    font-size: 13px;
    color: #64748B;
    min-height: 20px;
}

a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: #92A0FE;
    text-decoration: underline;
}