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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #111827, #1f2937);
}

.form-wrapper {
    width: 100%;
    max-width: 420px;
    background: #f9fafb;
    border-radius: 16px;
    padding: 28px 24px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.form-header {
    margin-bottom: 18px;
    text-align: center;
}

.form-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.form-header p {
    font-size: 0.9rem;
    color: #6b7280;
}


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

input,
textarea,
select {
    width: 100%;
    padding: 9px 11px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    outline: none;
    background: #ffffff;
    transition: all 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}

textarea {
    min-height: 90px;
    resize: vertical;
}

.row {
    display: flex;
    gap: 10px;
}


.form-footer {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.remember {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #6b7280;
}

.remember input {
    width: auto;
    margin: 0;
}

.btn-submit {
    border: none;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: #3b82f6;
    color: #f9fafb;
    transition: all 0.15s ease;
}

.btn-submit:hover {
    background: #2563eb;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: none;
}

.helper-text {
    margin-top: 6px;
    font-size: 0.78rem;
    color: #9ca3af;
    text-align: center;
}

@media (max-width: 480px) {
    .form-wrapper {
        margin: 0 14px;
        padding: 22px 18px 18px;
    }

    .form-header h1 {
        font-size: 1.25rem;
    }
}