#signon {
    font-family: "Barlow", sans-serif;
    font-size: 16px;
}

.branding__free-trial {
    display: flex;
    align-items: end;
    gap: 10px;
    font-size: 34px;
    font-weight: light;
    color: #5d5b5b;
}

.site-search {
    margin-top: 24px;
}

.site-search a {
    color: #EB3500;
}

.items-with-checkmark,
.items-with-number {
    margin-top: 12px;
}

.items-with-checkmark li,
.items-with-number li {
    line-height: 2;
}

.get-started-title {
    font-weight: bold;
    margin-top: 32px;
}

.branding {
    margin-top: 40px;
}

.branding__marks {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.branding__combomark {
    width: 163px;
    height: 28px;
    box-sizing: border-box;
}

.branding__product-mark {
    width: 247px;
    height: 37px;
    box-sizing: border-box;
}

.branding__text {
    font-family: "Barlow", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-top: 6px;
    height: 55px;
    width: 308px;
    line-height: 25px;
}

.signup-image {
    margin-top: 100px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 357px;
    height: 350px;
}

.signup-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.card-light {
    border: none;
}

.card-info-light {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 6px 0 0 6px;
    padding: 2rem 3rem 1rem;
    background: #FFF;
    box-shadow: 1px 1px 3px 0 rgba(115, 115, 115, 0.25);
}

.card-form-light {
    border-radius: 0 6px 6px 0;
    background: #F5F5F5;
    color: black;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* More padding on larger viewports */
@media (min-width: 1200px) {
    .card-form-light {
        padding: 3rem 6rem;
    }
    .page-container-light {
        display: flex;
    }
}

.card-form-light h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-form-light p {
    font-size: 14px;
    margin-bottom: 20px;
}

.items-with-checkmark-light {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    margin: 20px 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.items-with-checkmark-light img {
    width: 20px;
    height: 20px;
}

.copyright {
    color: #737373;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
    margin-top: 40px;
}

.right-panel-title {
    text-transform: uppercase;
    color: #333;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    display: block;
}

.sign-in-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: black;
    margin-top: 10px;
}

.sign-in-text a,
.sign-in-text a:hover {
    color: #EB3500;
}


.sign-in-link-dark,
.sign-in-link-dark:hover {
    color: #333
}

/* Gray out the first choice in dropdown menus */
.txtInput-light::placeholder,
select.placeholder-selected {
    color: #B3B3B3;
}

/* Orange borders around inputs and checkboxes */
.form-control:focus,
.custom-control-input:focus {
    border-color: #EB3500;
}

.custom-control-input:checked~.custom-control-label:before {
    color: #fff;
    border-color: #EB3500;
    background-color: #EB3500;
}

/* Light orange error messages */
label.error {
    background: #FFE3E3;
    color: #C54040;
}

.password-info-panel {
    font-family: "Barlow", sans-serif;
    font-size: 14px;
}

.card-form .form-control {
    height: 45px;
}

label.error:after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("{% static 'assets/images/icon-alert.svg' %}");
    background-size: contain;
    margin-left: 5px;
}

/* Switch out the checkmark styling */
.password-info-panel ul li::before {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    content: "" !important;
    background-image: url("{% static 'assets/images/checkmark.svg' %}") !important;
    background-size: contain;
}