/* Verify email — design tokens, light theme */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    background: var(--bg-page);
    color: var(--text-primary);
}

.verify-bg {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: var(--bg-page);
    padding: var(--page-padding);
}

.verify-header {
    width: 100%;
    padding: 2rem 0 0;
    text-align: left;
}

.verify-logo {
    width: 10rem;
    height: auto;
}

.verify-content {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.verify-title {
    color: var(--text-primary);
    font-size: clamp(1.5rem, 4vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-align: center;
}

.verify-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.5;
}

.verify-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.verify-input {
    width: 100%;
    padding: 1.1rem 1.2rem;
    min-height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    font-size: 1.15rem;
    font-family: var(--font-sans);
    background: var(--bg-card);
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
}

.verify-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.verify-input::placeholder {
    color: var(--text-muted);
}

.verify-password-wrap {
    position: relative;
    width: 100%;
}

.verify-password-wrap .verify-input--password {
    padding-right: 3rem;
}

.verify-password-wrap .toggle-password-btn {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-muted);
    padding: 0.25rem;
    line-height: 1;
}

.verify-password-wrap .toggle-password-btn:hover {
    color: var(--text-primary);
}

.verify-password-wrap .toggle-password-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.verify-btn {
    width: 100%;
    background: var(--accent);
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 0;
    min-height: 44px;
    border: none;
    border-radius: var(--radius-md);
    margin-top: 1.2rem;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
}

.verify-btn:hover {
    background: var(--accent-hover);
}

.verify-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.verify-message {
    font-size: 0.95rem;
    max-width: 420px;
}

.signup-check-icon-wrap {
    margin-bottom: 0.25rem;
}

.signup-check-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.signup-check-body {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 1.05rem;
    margin: 0 0 1rem;
}

.signup-check-body strong {
    color: var(--text-primary);
    word-break: break-word;
}

.signup-check-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.25rem;
    margin-top: 1.5rem;
    width: 100%;
}

.signup-check-actions .verify-btn {
    width: auto;
    min-width: 10rem;
    margin-top: 0;
    padding: 0.9rem 1.5rem;
}

.signup-check-return {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.signup-check-return:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.signup-check-support {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.45;
}

.signup-check-support a {
    color: var(--accent);
    font-weight: 500;
}

@media (max-width: 600px) {
    .verify-header {
        padding: 1rem 0 0;
    }
    .verify-logo {
        width: 80px;
    }
    .verify-content {
        margin-top: 1.2rem;
        max-width: 100%;
    }
    .verify-title {
        font-size: 1.5rem;
    }
    .verify-subtitle {
        font-size: 1rem;
    }
    .verify-input,
    .verify-btn {
        font-size: 1rem;
        padding: 0.9rem 1rem;
    }
}
