html {
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #f0f0f0;
}

.ptc_branding_logoWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4em;
}

.ptc_branding_logo {
    width: 136px;
    height: 32px;
    background-size: cover;
    background-image: url('/Images/ptc_logo.png');
}

.ptc_login_modalWrapper {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1em;
    padding: 2em;
    border-radius: 12px;
    /*box-shadow: 0px 2px 6px 0px rgba(24, 24, 28, 0.02), -10px 32px 41px -23px rgba(24, 24, 28, 0.02);*/
    width: 100%;
}

.ptc_login_modal {
    display: flex;
    flex: 1;
    max-width: 1000px;
    max-height: 600px;
    width: 100%;
    height: 100%;
    flex-direction: row;
    overflow: hidden;
    border-radius: 12px;
    background-color: white;
}

#wrap {
    background-image: none; /* Disable the background image */
    background-color: #f0f0f0; /* Update background color */
}
.page {
    background-color: #f0f0f0;
}

.ptc_formLabelWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.5em;
}

.ptc_formLabel {
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: .4em;
}

.ptc_formLabel_desc {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.05000000074505806px;
    text-align: center;
}

.ptc_login_form {
    min-width: 450px;
    flex: 1;
    margin: 5em 3em;
}

.ptc_login_image {
    flex: 1;
    background-image: url('/Images/Frame 811488.png');
}

.ptc_input {
    height: 48px;
    padding: 0px 12px;
    font-family: Inter;
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    border-radius: 8px;
    border: 1px solid var(--Global-Neutral-Grey-500, #E6E6E6);
    background: var(--Global-Base-White, #FFF);
    box-shadow: 0px 1.5px 4px -1px rgba(10, 9, 11, 0.07);
}

.ptc_inputLabel {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 475;
    line-height: 20px;
    margin-bottom: .5em;
}

.ptc_inputLabel_option {
    color: #7F7D83;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
}

.ptc_set_width100 {
    width: 25em;
}

.ptc_set_fullwidth {
    width: 100%;
}

.ptc_flex {
    display: flex;
}

.ptc_inputFull {
    display: flex;
    flex-direction: column;
}

.ptc_inputWrapper {
    display: flex;
    flex-direction: column;
    gap: 1.4em;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-field {
    width: 100%;
    padding-right: 40px; /* Adjusted to make room for the icon */
    box-sizing: border-box; /* Ensures padding is included in the width */
}

.password-input {
    width: 100%;
    padding-right: 30px; /* Make space for the icon */
}

.toggle-password-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}

.primary-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 16px;
    gap: 8px;
    width: 100%;
    height: 48px;
    background: #F0B323;
    border: none;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Inter', sans-serif;
    font-weight: 475;
    color: #1A1A1A;
}

    .primary-button:hover {
        background-color: #d4a419;
    }

.remember-me {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
    margin-top: 16px;
    font-size: 14px; 
    color: #696969;
    font-family: 'Inter', sans-serif; 
    font-weight: 400; 
}

.ptc_checkbox {
    margin-right: 0.5em; 
}
h1 {
    display: none !important;
}
/* Hide the default header for the login page */
body.login-page .header .headerContent {
    display: none;
}
.header .headerContent {
    display: none;
}
.header {
    background-image: none;
    height: 0;
}
.custom-headerContent {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 20px;
    position: relative;
}

    .custom-headerContent .ptc_branding_logoWrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
    }

    .custom-headerContent .custom-header-info {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        font-size: 14px;
        margin-left: auto;
        margin-top: -20px; /* Adjust this value to move the text higher */
    }

        .custom-headerContent .custom-header-info .grey {
            color: grey;
        }

        .custom-headerContent .custom-header-info address {
            margin: 0;
            font-style: normal;
        }
.ptdev_pill {
    background-color: #f0f0f0;
}
.inline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
}
#footer {
    background-image: none;
}