﻿.signup-container {
    max-width: 460px;
    margin: 40px auto;
    padding: 28px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
}

.signup-subtitle1 {
    font-size: 24px;
    font-weight: 700;
    color: #06203a;
    display: block;
    margin-top: 10px;
}

.signup-header {
    text-align: center;
    margin-bottom: 20px;
}

.signup-subtitle {
    font-size: 14px;
    color: #476281;
    margin-top: 4px;
}

.userTextBox {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #d1d9e0;
    font-size: 14px;
    transition: all 0.2s ease;
}

    .userTextBox:focus {
        border-color: #1a73e8;
        box-shadow: 0 0 4px rgba(26,115,232,0.3);
        outline: none;
    }

.EmailBtn {
    width: 100%;
    background: #1a73e8;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .EmailBtn:hover {
        background: #0d5fd4;
    }

.terms-section {
    font-size: 13px;
    color: #555;
    margin: 12px 0;
    line-height: 1.4;
}

    .terms-section a {
        color: #1a73e8;
        font-weight: 600;
        margin-left: 4px;
        text-decoration: none;
    }

        .terms-section a:hover {
            text-decoration: underline;
        }

.signup-extra {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: #333;
}

.login-link {
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
}

    .login-link:hover {
        text-decoration: underline;
    }


.intro-container {
    max-width: 860px;
    margin: 40px auto;
    padding: 36px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    line-height: 1.65;
    text-align: left;
    font-family: 'Segoe UI', sans-serif;
}

.intro-title {
    margin: 0 0 20px;
    font-size: 32px;
    font-weight: 700;
    color: #05203a;
    text-align: center;
    letter-spacing: -0.5px;
}

.intro-text {
    margin: 0 0 20px;
    font-size: 16px;
    color: #13324a;
}

.intro-list {
    margin: 0 0 28px;
    padding-left: 0;
    list-style: none;
    font-size: 16px;
    color: #153550;
}

    .intro-list li {
        margin: 10px 0;
        padding-left: 28px;
        position: relative;
    }

        .intro-list li::before {
            content: "✔";
            color: #1a73e8;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
        }

.highlight {
    font-size: 16px;
    color: #0b2545;
    font-weight: 500;
}

.intro-footer {
    margin-top: 22px;
    font-size: 14px;
    color: #0b2545;
    text-align: center;
    font-weight: 600;
    border-top: 1px solid #e0e6ef;
    padding-top: 12px;
}




/* ===============================
   Thank You Note Styling
   =============================== */

.thankyou-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
    line-height: 1.6;
}

.thankyou-title {
    font-size: 26px;
    font-weight: 700;
    color: #06203a;
    margin-bottom: 16px;
}

.thankyou-message {
    font-size: 16px;
    color: #14324a;
    color: #476281;
    margin-bottom: 28px;
}

.thankyou-footer {
    margin-top: 20px;
}

.thankyou-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1a73e8;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

    .thankyou-btn:hover {
        background: #0d5fd4;
    }

