@charset "utf-8";
/* CSS Document */

    .signupIntro {
    margin: 0 0 20px 0;
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}

.signupForm {
   
    margin: 25px 0 35px 0;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    box-sizing: border-box;
}

.formRow {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 14px 18px;
    align-items: start;
    margin-bottom: 18px;
}

.formRow label {
    margin: 0;
    padding-top: 11px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    color: #2d2d2d;
}

.fieldWrap {
    min-width: 0;
}



.formField200 {
    width: 100%;
    max-width: 450px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    background: #fff;
    color: #222;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.formField200:focus {
    outline: none;
    border-color: #a40000;
    box-shadow: 0 0 0 3px rgba(164,0,0,0.12);
}

.captchaBox {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px 12px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 10px;
}

.captchaBox img {
    display: block;
    max-height: 42px;
    width: auto;
}



.formActions {
    margin-top: 26px;
    padding-left: 198px;
}

.signupBtn,
.btn200.signupBtn,
input[type="submit"].signupBtn {
    display: inline-block;
    min-width: 250px;
    height: 46px;
    padding: 0 22px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to bottom, #c40000, #8d0000);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.signupBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.signupBtn:active {
    transform: translateY(0);
}
.signupNote {
   text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}
        .signupHeaderBlock {
    max-width: 760px;
    margin: 0 0 22px 0;
    padding: 0 0 14px 0;
            border-bottom: 1px solid #ececec;
}

.signupPageTitle {
    margin: 18px 0 18px 0;
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #1f1f1f;
}

.signupLead {
    margin: 0 0 14px 0;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.signupBenefits {
    margin: 8px 0 20px 22px;
    padding: 0;
}

.signupBenefits li {
    margin: 0 0 10px 0;
    font-size: 17px;
    line-height: 1.6;
    color: #2f2f2f;
}

.signupPrompt {
    margin: 18px 0 0 0;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    font-weight: bold;
}
      


.loginPageWrap {
    max-width: 760px;
    margin: 30px auto 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.loginCard,
.signupPromptCard {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    box-sizing: border-box;
}

.loginCard {
    max-width: 560px;
    margin: 0 auto 24px auto;
    padding: 30px;
}

.loginTitle {
    margin: 0 0 24px 0;
    font-size: 38px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    color: #1f1f1f;
}

.loginForm {
    margin: 0;
}

.formRow {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 14px 18px;
    align-items: start;
    margin-bottom: 18px;
}

.formRow label {
    margin: 0;
    padding-top: 11px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    color: #2d2d2d;
    text-align: right;
}

.fieldWrap {
    min-width: 0;
}

.formField200 {
    width: 100%;
    max-width: 430px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    background: #fff;
    color: #222;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.formField200:focus {
    outline: none;
    border-color: #a40000;
    box-shadow: 0 0 0 3px rgba(164,0,0,0.12);
}

.textfieldRequiredMsg {
    
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #b00000;
    font-weight: bold;
}
.textareaRequiredMsg {
    
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #b00000;
    font-weight: bold;
}

.formActions {
    margin-top: 24px;
    padding-left: 158px;
}

.loginBtn,
.btn200.loginBtn,
input[type="submit"].loginBtn {
    display: inline-block;
    min-width: 220px;
    height: 46px;
    padding: 0 22px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to bottom, #c40000, #8d0000);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.loginBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.loginBtn:active {
    transform: translateY(0);
}

.loginHelp {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #ececec;
    text-align: center;
}

.loginHelp p {
    margin: 0 0 6px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.loginHelp a {
    color: #8d0000;
    text-decoration: none;
    font-weight: bold;
}

.loginHelp a:hover {
    text-decoration: underline;
}

.signupPromptCard {
    max-width: 560px;
    margin: 0 auto;
    padding: 24px 30px;
    text-align: center;
}

.signupPromptCard h2 {
    margin: 0 0 16px 0;
    font-size: 28px;
    line-height: 1.3;
    color: #1f1f1f;
}

.signupPromptCard p {
    margin: 0 0 10px 0;
    font-size: 17px;
    line-height: 1.6;
}

.signupPromptCard a {
    color: #8d0000;
    text-decoration: none;
    font-weight: bold;
}

.signupPromptCard a:hover {
    text-decoration: underline;
}

.formSelect {
    width: 100%;
    max-width: 430px;
    height: 44px;
    padding: 0 42px 0 12px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    background-color: #fff;
    color: #222;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    outline: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #666 50%),
        linear-gradient(135deg, #666 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;

    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.formSelect:focus {
    border-color: #a40000;
    box-shadow: 0 0 0 3px rgba(164,0,0,0.12);
}

.formSelect:hover {
    border-color: #b8b8b8;
}




.formRowSub {
    margin-top: -6px;
}

.formLabelSpacer {
    min-height: 1px;
}

.fieldHint {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}

.signupForm select,
.signupForm .formSelect {
    width: 100%;
    max-width: 430px;
    height: 44px;
    padding: 0 42px 0 12px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    background-color: #fff;
    color: #222;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #666 50%),
        linear-gradient(135deg, #666 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signupForm select:focus,
.signupForm .formSelect:focus {
    border-color: #a40000;
    box-shadow: 0 0 0 3px rgba(164,0,0,0.12);
}

.accountHelpHeader {
    margin-bottom: 24px;
}

.accountHelpWrap {
    max-width: 760px;
}

.accountHelpCard {
    margin: 0 0 24px 0;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    box-sizing: border-box;
}

.accountHelpTitle {
    margin: 0 0 14px 0;
    font-size: 28px;
    line-height: 1.3;
    color: #1f1f1f;
}

.accountHelpText {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.signupFormTight {
    max-width: none;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.formTextarea {
    width: 100%;
    max-width: 430px;
    min-height: 120px;
    padding: 12px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    background: #fff;
    color: #222;
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.formTextarea:focus {
    outline: none;
    border-color: #a40000;
    box-shadow: 0 0 0 3px rgba(164,0,0,0.12);
}

.formRowTextarea {
    align-items: start;
}

.formRowTextarea label {
    padding-top: 12px;
}

.contactHeaderBlock {
    margin-bottom: 24px;
}

.contactPageWrap {
    max-width: 760px;
}

.contactInfoCard,
.contactFormCard {
    margin: 0 0 24px 0;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    box-sizing: border-box;
}

.contactCardTitle {
    margin: 0 0 18px 0;
    font-size: 28px;
    line-height: 1.3;
    color: #1f1f1f;
}

.contactIntro {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.contactInfoGrid {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 14px 18px;
    align-items: start;
}

.contactLabel {
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    color: #2d2d2d;
}

.contactValue {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.contactValue a {
    color: #8d0000;
    text-decoration: none;
    font-weight: bold;
}

.contactValue a:hover {
    text-decoration: underline;
}

.contactNotice {
    grid-column: 1 / -1;
    margin: -2px 0 6px 0;
    padding: 14px 16px;
    background: #fff7f7;
    border: 1px solid #f0caca;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #a00000;
    font-weight: bold;
}



.charCount {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}

.contactDataNote {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #ececec;
    font-size: 13px;
    line-height: 1.7;
    color: #666;
}



@media screen and (max-width: 700px) {
     .signupNote {
        margin-left: 0;
    }

    .signupForm {
        padding: 20px;
    }

    .formRow {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 16px;
    }

    .formRow label {
        padding-top: 0;
    }

    .formField200 {
        max-width: 100%;
    }
    .formSelect {
    max-width: 100%;
    }

    .formActions {
        padding-left: 0;
    }

    .signupBtn,
    .btn200.signupBtn,
    input[type="submit"].signupBtn {
        width: 100%;
        min-width: 0;
    }
  .loginPageWrap {
        margin: 20px auto 30px auto;
        padding: 0 14px;
    }

    .loginCard,
    .signupPromptCard {
        padding: 20px;
    }

    .loginTitle {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .formRow {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 16px;
    }

    .formRow label {
        text-align: left;
        padding-top: 0;
    }



    .formActions {
        padding-left: 0;
    }

    .loginBtn,
    .btn200.loginBtn,
    input[type="submit"].loginBtn {
        width: 100%;
        min-width: 0;
    }

    .signupPromptCard h2 {
        font-size: 24px;
    }
    
    .formRowSub {
        margin-top: 0;
    }

    .formLabelSpacer {
        display: none;
    }

    .signupForm select,
    .signupForm .formSelect {
        max-width: 100%;
    }
    
    .accountHelpCard {
        padding: 20px;
    }

    .accountHelpTitle {
        font-size: 24px;
    }

    .formTextarea {
        max-width: 100%;
    }
    .contactInfoCard,
    .contactFormCard {
        padding: 20px;
    }

    .contactCardTitle {
        font-size: 24px;
    }

    .contactInfoGrid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contactNotice {
        margin-top: 4px;
    }

}
    
    
