﻿.onboarding-container {
    width: 100%;
}

.onboarding-header-text {
    font-size: 1.7rem;
    line-height: 2rem;
    color: #424C38;
    font-weight: 400;
    margin-bottom: 1rem;
    min-height: 2rem;
}

.onboarding-explanatory-text {
    font-size: 1.125rem;
    line-height: 1.75rem; 
    font-weight: 300;
    margin-bottom: 1rem;
    min-height: 2rem; 
}

.primary-action-container,
.secondary-action-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1rem;
}

.primary-action-text {
    font-size: 1.125rem;
    line-height: calc(1.75 / 1.125);
    font-weight: 500;
    flex-shrink: 1;
    min-width: 0;
    margin-right: 1rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.secondary-action-text {
    font-size: 1rem;
    line-height: calc(1.5 / 1);
    font-weight: 400;
    flex-shrink: 1;
    min-width: 0;
    margin-right: 1rem;
    text-overflow: ellipsis;
    overflow: hidden;
}

.continue-button {
    color: #77B11F;
    font-weight: 500;
    font-size: 1.125rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0.9;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

    .continue-button:hover {
        color: #649913;
    }

.verification-button {
    color: #77B11F;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

    .verification-button:hover {
        color: #649913;
    }

.resend-button {
    color: oklch(0.707 0.022 261.325);
    text-underline-offset: 4px;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s ease;
}
    .resend-button:hover {
        color: oklch(0.446 0.03 256.802);
    }

@media (max-width: 640px) {
    .onboarding-header-text {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .onboarding-explanatory-text {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .primary-action-container,
    .secondary-action-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .primary-action-text,
    .secondary-action-text,
    .continue-button,
    .verification-button,
    .resend-button {
        white-space: normal;
        margin-right: 0;
    }
}