/* Styling for our custom "Create Your Account" reg step (account_password).
   The theme's checkout styles are hard-scoped to the attendee_information slug
   (and only target text/email inputs, not password), so none of them reach our
   step. These rules mirror that design — same tokens, fonts and teal pills —
   scoped to our step's containers. */

/* ----- form fields ----- */

/* Two fields side by side (mirrors the attendee step's 2-col grid). */
#pmt-account-password-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
    margin-bottom: 40px;
}

#spco-account_password-dv label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.1px;
    font-family: "Circular", sans-serif;
}

#spco-account_password-dv input[type="password"] {
    width: 100%;
    height: 60px;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f2f2f2;
    border: 1px solid #edecec;
    border-radius: 2px;
    box-shadow: unset;
    font-size: 16px;
    line-height: 24px;
}

#spco-account_password-dv input[type="password"]:focus {
    border-color: #008080;
    outline: none;
}

/* the EE required asterisk, matched to the attendee step */
#spco-account_password-dv .ee-asterisk {
    display: inline-flex;
    margin-left: 4px;
    color: #008080;
}

/* ----- "what's next" buttons (View Course Cart + Proceed to Payment) ----- */

#spco-account_password-whats-next-buttons-dv {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /* View Course Cart far left, Proceed far right */
    gap: 20px;
    flex-wrap: wrap;
    padding: 0;
}

#spco-account_password-whats-next-buttons-dv .spco-next-step-btn,
#spco-account_password-whats-next-buttons-dv .return-to-event-cart-mini-cart-lnk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 235px;
    height: 50px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    font-family: "Circular", sans-serif;
    text-decoration: none;
    cursor: pointer;
}

#spco-account_password-whats-next-buttons-dv .spco-next-step-btn {
    border: none;
    background: #008080;
    color: #ffffff;
}

#spco-account_password-whats-next-buttons-dv .return-to-event-cart-mini-cart-lnk {
    background: #ffffff;
    border: 2px solid #008080;
    color: #008080;
}

#spco-account_password-whats-next-buttons-dv .spco-next-step-btn:hover,
#spco-account_password-whats-next-buttons-dv .return-to-event-cart-mini-cart-lnk:hover {
    text-decoration: none;
}

@media (max-width: 600px) {
    #pmt-account-password-fields {
        grid-template-columns: 1fr;
    }
    #spco-account_password-whats-next-buttons-dv {
        flex-direction: column;
        justify-content: center;
    }
}
