* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, #eef2ff 0, transparent 35%),
        #f6f7fb;
    color: #172033;
}

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

.login-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border: 1px solid #e7eaf0;
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 24px 70px rgba(20, 30, 55, 0.10);
}

.brand {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #6d5dfc;
    margin-bottom: 28px;
}

h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.subtitle {
    margin: 16px 0 30px;
    color: #687086;
    font-size: 16px;
    line-height: 1.55;
}

.login-form {
    display: grid;
    gap: 18px;
}

label {
    display: grid;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #dfe3eb;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
}

input:focus {
    border-color: #6d5dfc;
    box-shadow: 0 0 0 3px rgba(109, 93, 252, 0.12);
}

button {
    height: 52px;
    border: 0;
    border-radius: 12px;
    background: #6d5dfc;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
}

button:hover {
    opacity: 0.94;
}

.register {
    margin-top: 22px;
    text-align: center;
    font-size: 14px;
    color: #6e7587;
}

.register a {
    color: #6d5dfc;
    font-weight: 700;
    text-decoration: none;
}

.status {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #edf0f5;
    color: #7a8190;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2fbf71;
}

@media (max-width: 560px) {
    .login-card {
        padding: 30px 22px;
        border-radius: 18px;
    }

    h1 {
        font-size: 28px;
    }
}
