/* =========================================================
   RYNA WOMAN - CREATE ACCOUNT
========================================================= */

.create-account-page,
.create-account-page *,
.create-account-page *::before,
.create-account-page *::after {
    box-sizing: border-box;
}

.create-account-page {
    width: 100%;
    min-height: 470px;
    background: #fff5f7;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   CREATE ACCOUNT SECTION
========================================================= */

.create-account-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 42px 20px 90px;
}


/* =========================================================
   FORM BOX
========================================================= */

.create-account-box {
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
}


/* =========================================================
   TITLE
========================================================= */

.create-account-box h1 {
    margin: 0 0 8px;
    color: #171412;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.1px;
}


/* =========================================================
   SUBTITLE
========================================================= */

.create-account-subtitle {
    margin: 0 0 21px;
    color: #918783;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}


/* =========================================================
   FORM
========================================================= */

.create-account-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* =========================================================
   INPUTS
========================================================= */

.create-account-form input {
    width: 100%;
    height: 38px;
    padding: 0 12px;

    border: 1px solid #ded9d7;
    border-radius: 0;
    outline: none;

    background: #ffffff;
    color: #292522;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 400;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.create-account-form input::placeholder {
    color: #9d9692;
    opacity: 1;
}

.create-account-form input:focus {
    border-color: #aaa19d;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(170, 161, 157, 0.08);
}


/* =========================================================
   REFERRAL CODE
========================================================= */

.create-account-form input[name="referral_code"] {
    text-transform: uppercase;
}


/* =========================================================
   BUTTON
========================================================= */

.create-account-button {
    width: 100%;
    height: 39px;
    margin-top: 1px;

    border: 1px solid #171514;
    border-radius: 0;
    outline: none;

    background: #171514;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.15s ease;
}

.create-account-button:hover {
    background: #2b2826;
    border-color: #2b2826;
}

.create-account-button:active {
    background: #11100f;
    transform: translateY(1px);
}


/* =========================================================
   EXISTING ACCOUNT
========================================================= */

.existing-account {
    margin: 13px 0 0;
    color: #8d8581;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
}

.existing-account a {
    color: #77706c;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.existing-account a:hover {
    color: #22201e;
}


/* =========================================================
   MESSAGES
========================================================= */

.account-message {
    width: 100%;
    margin: 0 0 12px;
    padding: 10px 11px;

    font-size: 10px;
    line-height: 1.5;
}

.account-error {
    background: #fff0f0;
    border: 1px solid #efd0d0;
    color: #a33b3b;
}

.account-success {
    background: #f1f8f1;
    border: 1px solid #d1e4d1;
    color: #477247;
}


/* =========================================================
   MOBILE
   360px - 767px
========================================================= */

@media (max-width: 767px) {

    .create-account-page {
        min-height: 500px;
    }

    .create-account-section {
        padding: 36px 18px 65px;
    }

    .create-account-box {
        width: 100%;
        max-width: 310px;
    }

    .create-account-box h1 {
        font-size: 23px;
        margin-bottom: 8px;
    }

    .create-account-subtitle {
        margin-bottom: 19px;
        font-size: 11px;
    }

    .create-account-form {
        gap: 10px;
    }

    .create-account-form input {
        height: 38px;
        padding: 0 11px;
        font-size: 11px;
    }

    .create-account-button {
        height: 39px;
        font-size: 11px;
    }

    .existing-account {
        margin-top: 12px;
        font-size: 10px;
    }

    .account-message {
        padding: 9px 10px;
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
   320px - 359px
========================================================= */

@media (max-width: 359px) {

    .create-account-section {
        padding: 30px 14px 55px;
    }

    .create-account-box {
        max-width: 290px;
    }

    .create-account-box h1 {
        font-size: 21px;
    }

    .create-account-subtitle {
        font-size: 10px;
        margin-bottom: 18px;
    }

    .create-account-form {
        gap: 9px;
    }

    .create-account-form input {
        height: 36px;
        padding: 0 10px;
        font-size: 10px;
    }

    .create-account-button {
        height: 37px;
        font-size: 10px;
    }

    .existing-account {
        font-size: 10px;
    }

    .account-message {
        font-size: 9px;
    }
}


/* =========================================================
   TABLET
   768px - 1023px
========================================================= */

@media (min-width: 768px) and (max-width: 1023px) {

    .create-account-page {
        min-height: 510px;
    }

    .create-account-section {
        padding: 44px 25px 80px;
    }

    .create-account-box {
        max-width: 310px;
    }

    .create-account-box h1 {
        font-size: 25px;
    }

    .create-account-subtitle {
        font-size: 11px;
        margin-bottom: 21px;
    }

    .create-account-form {
        gap: 11px;
    }

    .create-account-form input {
        height: 40px;
        font-size: 11px;
    }

    .create-account-button {
        height: 41px;
        font-size: 11px;
    }

    .existing-account {
        font-size: 11px;
    }
}


/* =========================================================
   LAPTOP
   1024px - 1439px
========================================================= */

@media (min-width: 1024px) and (max-width: 1439px) {

    .create-account-page {
        min-height: 470px;
    }

    .create-account-section {
        padding: 42px 20px 85px;
    }

    .create-account-box {
        max-width: 290px;
    }

    .create-account-box h1 {
        font-size: 25px;
    }

    .create-account-subtitle {
        font-size: 11px;
    }

    .create-account-form {
        gap: 10px;
    }

    .create-account-form input {
        height: 38px;
        font-size: 11px;
    }

    .create-account-button {
        height: 39px;
        font-size: 11px;
    }

    .existing-account {
        font-size: 11px;
    }
}


/* =========================================================
   LARGE LAPTOP
   1440px - 1919px
========================================================= */

@media (min-width: 1440px) and (max-width: 1919px) {

    .create-account-page {
        min-height: 480px;
    }

    .create-account-section {
        padding-top: 45px;
        padding-bottom: 95px;
    }

    .create-account-box {
        max-width: 290px;
    }

    .create-account-box h1 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .create-account-subtitle {
        font-size: 11px;
        margin-bottom: 21px;
    }

    .create-account-form {
        gap: 10px;
    }

    .create-account-form input {
        height: 38px;
        font-size: 11px;
    }

    .create-account-button {
        height: 39px;
        font-size: 11px;
    }

    .existing-account {
        font-size: 11px;
    }
}


/* =========================================================
   DESKTOP
   1920px AND ABOVE
========================================================= */

@media (min-width: 1920px) {

    .create-account-page {
        min-height: 500px;
    }

    .create-account-section {
        padding-top: 50px;
        padding-bottom: 105px;
    }

    .create-account-box {
        max-width: 300px;
    }

    .create-account-box h1 {
        font-size: 27px;
        margin-bottom: 9px;
    }

    .create-account-subtitle {
        font-size: 12px;
        margin-bottom: 22px;
    }

    .create-account-form {
        gap: 11px;
    }

    .create-account-form input {
        height: 40px;
        padding: 0 12px;
        font-size: 11px;
    }

    .create-account-button {
        height: 41px;
        font-size: 11px;
    }

    .existing-account {
        margin-top: 13px;
        font-size: 11px;
    }

    .account-message {
        font-size: 10px;
    }
}


/* =========================================================
   VERY SMALL SCREEN SAFETY
========================================================= */

@media (max-width: 320px) {

    .create-account-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .create-account-box {
        max-width: 100%;
    }

    .create-account-box h1 {
        font-size: 20px;
    }

    .create-account-subtitle {
        font-size: 10px;
    }

    .create-account-form input {
        font-size: 10px;
    }

    .create-account-button {
        font-size: 10px;
    }

    .existing-account {
        font-size: 9px;
    }
}