* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1f2937;
    background: #eef2f7;
}

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

.panel {
    width: 100%;
    max-width: 440px;
    padding: 36px;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(31, 41, 55, 0.12);
}

.eyebrow {
    margin: 0 0 10px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
}

h1 {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.25;
}

.lead {
    margin: 0 0 28px;
    color: #4b5563;
    line-height: 1.6;
}

.form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.field {
    display: grid;
    gap: 8px;
}

label {
    font-size: 14px;
    font-weight: 700;
}

input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 16px;
    background: #ffffff;
}

input:focus {
    outline: 3px solid rgba(37, 99, 235, 0.18);
    border-color: #2563eb;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 6px;
    background: #2563eb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.button:hover {
    background: #1d4ed8;
}

.text-link {
    display: inline-block;
    margin-top: 20px;
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .panel {
        padding: 28px 20px;
    }

    h1 {
        font-size: 25px;
    }
}
