/* login */
.page-title {
    font-size: 1.8rem;
    margin: 3.6rem 0;
    text-transform: uppercase;
    display: flex !important;
    justify-content: center;
}
.login-container .block .block-title {
    font-size: 1.6rem;
}
.form .field,
.block-content p {
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
}
.form .field .label {
    font-weight: normal;
}
.form .field input {
    height: 4rem;
    border-radius: 4px;
}
.form .field.choice {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}
.form .field input[type="checkbox"] {
    margin: 0;
    top: unset;
}
.form .field input:focus {
    box-shadow: unset;
    border: 1px solid var(--primary-color);
}
.action.primary {
    background: var(--primary-color);
    border:1px solid var(--primary-color);
    padding: 1rem 2rem;
}
.action.primary:hover,
.action.primary:active {
    background: var(--primary-color-hover);
    border:1px solid var(--primary-color-hover);
}
.form a.action.remind {
    color: var(--a-text-hover);
}
.form a.action.remind:hover {
    color: var(--primary-color);
}
@media only screen and (min-width: 768px) {
    .page-title {
        font-size: 2.8rem;
        margin: 5.6rem 0;
    }
    .login-container .block .block-title {
        font-size: 2rem;
    }
    .form .field, .block-content p {
        font-size: 1.6rem;
    }
}

/* login end */

/* register */
.account .legend > span {
    font-size: 1.6rem;
}
.actions-toolbar {
    margin-top: 3.2rem;
}
@media only screen and (min-width: 768px) {
    .account .legend > span {
        font-size: 2rem;
    }
    .form.create.account {
        width: 100%;
        min-width: unset;
    }
    .form.create.account .fieldsets {
        display: flex;
        justify-content: space-between;
        gap: 10%;
    }
    .form.create.account .fieldsets .fieldset {
        width: calc((100% - 10%) / 2);
    }
}
/* register end */

/* forgot & create password */
.form.password.forget,
.form.password.reset {
    margin: 0 auto;
}
@media only screen and (min-width: 768px) {
    .customer-account-forgotpassword .page.messages,
    .customer-account-createpassword .page.messages {
        width: 50%;
        min-width: 600px;
        margin: 0 auto;
    }
}
/* forgot & create password end */

/* logout */
.logout-wrapper {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.logout-wrapper h1 {
    font-size: 2.8rem;
    margin: 0;
}
.logout-wrapper p {
    font-size: 1.6rem;
    margin: 0;
}
/* logout end */
