:root {
    --white: #FFFFFF;
    --black: #000000;
    --ptc-primary: #9A7611;
    --ptc-secondary: #00A19A;
    --input-border: #EFEDE6;
    --input-error: #F44336	;
    --input-error-bg: #EAEAEA;
    --placeholder-grey: #3D3D3D;
    --bg-dark: #1A1919;
    --separator-grey: #CECBCB;
}

body {
    font-size: 16px;
    background: var(--bg-dark);
}

.contentForm {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainContainer {
    padding: 0;
    width: 100%;
}

#logreg-forms {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 600px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    padding: 2rem;
    color: #fff;
}
@media (max-width: 600px) {
    #logreg-forms {
        width: 95%;
    }
}

#logreg-forms .companyLogo {
    width: 275px;
    height: 180px;
    filter: brightness(0) invert(100%);
}

#api {
    display: flex;
    flex-direction: column-reverse;
}

#api .divider {
    display: none;
}

.localAccount {
    display: flex;
    padding-bottom: 5px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    align-self: stretch;
}

.localAccount .error.pageLevel {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px;
    border: 1px solid var(--input-error);
    background: var(--input-error-bg);
    color: var(--input-error);
    font-family: Avenir;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    text-transform: uppercase;
}

.localAccount .intro , #api .intro{
    display: none;
}

.localAccount .working {
    display: none;
}

.localAccount .entry {
    display: flex;
    padding-bottom: 5px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    align-self: stretch;
}

.localAccount .entry-item {
    width: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.localAccount .entry-item label {
    display: none;
}

.localAccount .entry-item input {
    display: flex;
    height: 48px;
    padding: 8px 12px;
    align-items: center;
    gap: 8px;
    border-radius: 3px;
    border: 1px solid var(--input-border);
    background: var(--white);

    font-size: 16px;
    font-weight: 400;
}

.localAccount .entry-item input:focus-visible,
.localAccount .entry-item input:focus {
    outline-color: var(--ptc-primary);
}

.localAccount .entry-item input::placeholder,
.localAccount .entry-item textarea::placeholder {
    color: var(--placeholder-grey);
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 350;
    line-height: 12px;
    text-transform: uppercase;
}

.localAccount .entry-item input::-ms-input-placeholder,
.localAccount .entry-item textarea::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--placeholder-grey);
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 350;
    line-height: 12px;
    text-transform: uppercase;
}

.localAccount .entry-item input::-webkit-input-placeholder,
.localAccount .entry-item textarea::-webkit-input-placeholder {
    /* WebKit browsers */
    color: var(--placeholder-grey);
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 350;
    line-height: 12px;
    text-transform: uppercase;
}

.localAccount .entry-item input::-moz-placeholder,
.localAccount .entry-item textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--placeholder-grey);
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 350;
    line-height: 12px;
    text-transform: uppercase;
}

.localAccount .entry-item input:-moz-placeholder,
.localAccount .entry-item textarea:-moz-placeholder {
    /* Firefox 4-18 */
    color: var(--placeholder-grey);
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 350;
    line-height: 12px;
    text-transform: uppercase;
}

.localAccount .entry-item .error {
    color: var(--input-error);
    font-family: Avenir;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    text-transform: uppercase;
    order: 3;
    padding: 0;
}

.error,
.verificationErrorText .error,
#claimVerificationServerError {
    color: var(--input-error);
    font-family: Avenir;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    text-transform: uppercase;
    order: 3;
    padding: 0;
}

.localAccount .buttons {
    align-self: stretch;
    width: 100%;
}

.editButton,
.sendButton,
.localAccount .buttons button {
    width: 100%;
    display: flex !important;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: var(--ptc-primary);
    color: var(--white);
    text-align: center;
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--ptc-primary);
    border: 1px solid var(--ptc-primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.localAccount .buttons button:hover {
    background: var(--ptc-secondary);
    border: 1px solid var(--ptc-secondary);
}

.claims-provider-list-buttons {
    display: none;
    padding-top: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-top: 1px solid var(--white);
    margin: 18px 0;

    width: 80%;
    margin: 20px auto;
}

.claims-provider-list-buttons .intro {
    align-self: stretch;
}

.claims-provider-list-buttons .intro * {
    color: var(--white);
    text-align: center;
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.claims-provider-list-buttons .options {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 10px;
}

.claims-provider-list-buttons .options .accountButton {
    cursor: pointer;
    width: 100%;
    display: flex;
    padding: 15px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 4px;
    background: var(--white);
    color: var(--black);
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    border: none;
    transition: all .5s ease-in-out;
}

.claims-provider-list-buttons .options .accountButton:hover {
    background: var(--input-error-bg);
}

.forgot-password {
    display: flex;
    padding: 15px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-top: 1px solid var(--separator-grey);
}

#forgotPassword {
    color: var(--white);
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
}

#forgotPassword:hover {
    text-decoration: underline;
}

#localAccountForm>div.entry>div.CaptchaControl.entry-item.captchaControlChallengeCode_section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#captchaControlChallengeCode_label {
    display: block;
    text-align: left;
    color: var(--white);
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
}

#localAccountForm>div.entry>div.CaptchaControl.entry-item.captchaControlChallengeCode_section>div.captcha-display-control {
    min-width: 100%;
}

#captchaControlChallengeCode-img {
    width: 100%;
}

#captchaControlChallengeCode {
    width: calc(100% - 24px);
}

#localAccountForm>div.error.pageLevel {
    display: none;
}

#api>div.heading {
    display: none;
}

#captchaControlChallengeCode-generateCaptchaBtn,
#captchaControlChallengeCode-switchCaptchaBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#localAccountForm>div.entry>div.CaptchaControl.entry-item.captchaControlChallengeCode_section>div.captcha-display-control>div.captcha-control-buttons {
    display: flex;
    padding: 5px 0;
    gap: 5px
}

#captchaControlChallengeCode-switchCaptchaBtn {
    background-color: white;
    background-image: url('https://www.palladiumhotelgroup-stage-cloud.com/content/dam/palladium/msazure/MSA/assets/css/ptc/headphones-solid.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    border: 1px solid lightgray;
}

#captchaControlChallengeCode-generateCaptchaBtn {
    background-color: white;
    background-image: url('https://www.palladiumhotelgroup-stage-cloud.com/content/dam/palladium/msazure/MSA/assets/css/ptc/arrows-rotate-solid.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    border: 1px solid lightgray;
}

#captchaControlChallengeCode-audio-playbtn {
    background-color: white;
    background-image: url("https://www.palladiumhotelgroup-stage-cloud.com/content/dam/palladium/msazure/MSA/assets/css/ptc/sound.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    border: 1px solid lightgray;
}

#attributeList>ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.attrEntry label{
    font-size: small;
}
.attrEntry input {
    width:100%;
    height: 48px;
    padding: 5px 0;
}
.attrEntry div:nth-child(1){
    padding-bottom: 20px;
}

.TextBox {
    list-style: none;
}

.helpLink {
    color: var(--white);
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;

    display:none;
}

.verificationSuccessText,
.verificationInfoText,
.intro {
    color: var(--white);
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}
.intro h2 {
    padding-top: 20px;
}

#email,
#email_ver_input {
    display: flex;
    height: 30px;
    padding: 8px 12px;
    align-items: center;
    gap: 8px;
    border-radius: 3px;
    border: 1px solid var(--input-border);
    background: var(--white);
    width: 100%;
    max-width: calc(100% - 24px);
    margin-bottom: 18px;
}

#email_ver_input::placeholder,
#email::placeholder {
    color: var(--placeholder-grey);
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 350;
    line-height: 12px;
    text-transform: uppercase;
}

#email_label,
#email_ver_input_label {
    display: none !important;
}

#attributeVerification {
    max-width: 375px;
    margin: auto;
    width: 100%;
}

#attributeVerification .buttons:not(.verify) {
    display: flex;
    gap: 18px;
    margin-top: 18px;
}

#email_ver_but_verify {
    width: 100%;
    display: flex;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: var(--ptc-primary);
    color: var(--white);
    text-align: center;
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--ptc-primary);
    border: 1px solid var(--ptc-primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    margin-bottom: 18px;
}

#email_ver_but_resend {
    margin-top: 18px;
    margin-bottom: 18px;
}

#attributeVerification .buttons:not(.verify) button {
    flex: 1;
    display: flex;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: var(--ptc-primary);
    color: var(--white);
    text-align: center;
    font-family: 'Avenir LT Std', sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--ptc-primary);
    border: 1px solid var(--ptc-primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

@media screen and (min-width: 768px) {
    .mainContainer {
        min-width: 375px;
    }
}

@media screen and (min-width: 1024px) {
    .contentForm {
        padding: 5% 0;
    }
}

/* Add icons */

.localAccount .buttons button::after {
    content: "";
    width: 8px;
    height: 12px;
    background: url("https://www.palladiumhotelgroup.com/content/dam/palladium/msazure/MSA/assets/img/ptc/btn-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

#FacebookExchange::before {
    content: "";
    width: 25px;
    height: 25px;
    background: url("https://www.palladiumhotelgroup.com/content/dam/palladium/msazure/MSA/assets/img/ptc/facebook-account.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

#GoogleExchange::before {
    content: "";
    width: 25px;
    height: 25px;
    background: url("https://www.palladiumhotelgroup.com/content/dam/palladium/msazure/MSA/assets/img/ptc/google-account.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

#AppleExchange::before {
    content: "";
    width: 25px;
    height: 25px;
    background: url("https://www.palladiumhotelgroup.com/content/dam/palladium/msazure/MSA/assets/img/ptc/apple-account.svg");
    background-size: contain;
    background-repeat: no-repeat;
}


/* Hide buttons on password recovery workflow */

form#attributeVerification.js-sendCode .buttons.verify button:not(#email_ver_but_send){
    display: none!important;
}
form#attributeVerification.js-sendCode > div.buttons, form#attributeVerification.js-sendVerification > div.buttons {
    display: none!important;
}

form#attributeVerification.js-sendVerification .buttons.verify button:not(#email_ver_but_verify){
    display: none!important;
}

form#attributeVerification.js-resetPassword .buttons.verify {
    display: flex!important;
    flex-direction: column;
}

form#attributeVerification.js-resetPassword div.buttons.verify button{
    display: none!important;
}

li.Password{
    list-style: none;
    margin: 10px 0;
}


