/* static/css/mailsms/signup.css */

.signup-page {
    padding-top: 4.5rem;
}

.signup-body-copy {
    max-width: 70%;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

.signup-section-box {
    margin-top: 1.5rem;
    padding: 1rem;
    border: 0.3rem solid #ccc;
    border-radius: 1rem;
    background-color: #f5f5f5;
}

.signup-section-box-cta {
    border-color: #ff6b6b;
    background-color: #fff5f5;
}

.signup-section-box-error {
    border-color: #d94841;
    background-color: #fff1f0;
}

.signup-h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.signup-cta-description {
    line-height: 1.7;
    text-align: left;
}

.signup-tight-p {
    margin: 0.3em 0;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
}

.signup-form {
    margin-top: 1rem;
}

.signup-form-row {
    margin-top: 0.9rem;
}

.signup-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
    font-weight: 700;
}

.signup-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #bbb;
    border-radius: 0.7rem;
    background-color: #fff;
    font-size: 1rem;
}

.signup-field-error {
    margin-top: 0.35rem;
    color: #d94841;
    font-size: 0.92rem;
}

.signup-form-button-wrap {
    margin-top: 1rem;
    text-align: center;
}

.signup-cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 0;
    border-radius: 1.5rem;
    background-color: #ff6b6b;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.signup-cta-button:hover {
    background-color: #ff4d4f;
}

.signup-submit-button {
    cursor: pointer;
}

.signup-notes {
    margin-top: 1rem;
    text-align: left;
}

.signup-login-link {
    margin-top: 1rem;
    font-size: 1rem;
    text-align: left;
}

.signup-plan-table-wrapper {
    margin-top: 1rem;
    overflow-x: auto;
}

.signup-plan-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background-color: #fff;
}

.signup-plan-table th,
.signup-plan-table td {
    padding: 0.75rem 0.6rem;
    border: 0.0625rem solid #bbb;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    vertical-align: middle;
}

.signup-plan-table th {
    background-color: #f2f2f2;
    font-weight: 700;
}

.signup-plan-table th:nth-child(2),
.signup-plan-table td:nth-child(2) {
    background-color: #f7fbff;
}

.signup-plan-table th:nth-child(3),
.signup-plan-table td:nth-child(3) {
    background-color: #fff5f5;
}

.signup-plan-table td:first-child {
    width: 24%;
    background-color: #fafafa;
    font-weight: 700;
}

@media (max-width: 768px) {
    .signup-body-copy {
        max-width: 90%;
    }

    .signup-section-box {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .signup-plan-table th,
    .signup-plan-table td {
        padding: 0.65rem 0.45rem;
        font-size: 0.92rem;
    }

    .signup-cta-button {
        width: 100%;
        max-width: 100%;
        padding: 0.85rem 1rem;
        font-size: 1rem;
    }
    .signup-form-row {
        overflow: hidden;
    }

    .signup-form-row .g-recaptcha {
        transform: scale(0.84);
        transform-origin: left top;
    }
}