/* auth_forgot_password.css - ページ固有スタイル */
/* 共通スタイルは common/auth_common.css を参照 */

.card {
    width: min(520px, 100%);
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 32px 10px 32px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom:10px;
}

.brand {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
}

.card-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.card-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
}

.form-input {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.submit-button {
    border: none;
    background: #030213;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(2, 6, 23, 0.2);
}

.form-note {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

.form-link {
    color: #0f172a;
    text-decoration: underline;
}

.brand-icon {
    height: 81px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}

.brand-logo {
    height: 45px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}

@media (max-width: 480px) {
    .card {
        padding: 24px;
    }

    .brand {
        font-size: 28px;
    }

    .brand-icon {
        height: 62px;
    }

    .brand-logo {
        height: 35px;
    }
}
