.forms-text {
    color: #12335B;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.forms-help-text {
    margin-top: 8px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #71859D;
}

.forms-inside-header {
    margin-top: 1em;
    margin-bottom: 1em;
    color: #12335B;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.form-label-with-bullets {
    margin-bottom: 0px;
}

.card {
    width: 45rem;
    border-radius: 16px;
    border: none;
}

.details-container {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: var(--primary-background-color);
    border-radius: 16px;
}

    .details-container label {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: var(--neutral-100-color);
    }

::deep .validation-label {
    font-weight: 400;
    font-size: 14px;
    color: #F22800;
}

::deep input.input-validation-error,
::deep select.input-validation-error {
    border-color: red;
}

::deep .modal-dialog {
    max-width: 50%;
}

::deep .modal-content {
    border-radius: 16px;
    border: none;
}

::deep .modal-header {
    border: none;
}

::deep .modal-title {
    font-weight: 700;
    color: #12335B;
}

::deep .modal-footer {
    border: none;
}

::deep #emailModal {
    color: #3388FF;
}

/* TOGGLE STYLING */
.toggle {
    height: 44px;
    background-color: #F4F8FC;
    border-radius: 8px;
    margin: 0 0 1.5rem;
    box-sizing: border-box;
    font-size: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
}

    .toggle input {
        width: 0;
        height: 0;
        position: absolute;
        left: -9999px;
    }

        .toggle input + label {
            margin: 7px;
            margin-left: 0px;
            box-sizing: border-box;
            position: relative;
            background-color: #F4F8FC;
            border-radius: 8px;
            font-size: 14px;
            line-height: 20px;
            text-align: center;
            box-shadow: 0 0 0 rgba(255, 255, 255, 0);
            transition: border-color 0.15s ease-out, color 0.25s ease-out, background-color 0.15s ease-out, box-shadow 0.15s ease-out;
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #12335B;
            font-weight: 400;
        }

        .toggle input:checked + label {
            background-color: #FFF;
            z-index: 1;
            box-shadow: 0 0 10px rgba(219, 223, 226, 0.5);
            font-weight: 500;
        }

        .toggle input + label:first-of-type {
            margin: 7px;
        }

.boolean-toggle {
    height: 36px;
    width: 128px;
    background-color: #F4F8FC;
    border-radius: 8px;
    margin: 0 0 1.5rem;
    box-sizing: border-box;
    font-size: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
}

    .boolean-toggle input {
        width: 0;
        height: 0;
        position: absolute;
        left: -9999px;
    }

        .boolean-toggle input + label {
            box-sizing: border-box;
            position: relative;
            background-color: #F4F8FC;
            border: solid 1px #DDD;
            border-radius: 8px;
            font-size: 14px;
            line-height: 20px;
            text-align: center;
            transition: border-color 0.15s ease-out, color 0.25s ease-out, background-color 0.15s ease-out, box-shadow 0.15s ease-out;
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #12335B;
            font-weight: 400;
        }

            .boolean-toggle input:disabled + label{
                opacity: 0.5;
            }

            .boolean-toggle input:checked + label {
                background-color: #3388FF;
                color: #FFF;
                z-index: 1;
                font-weight: 700;
            }

        .boolean-toggle input + label:first-of-type {
            border-radius: 8px 0 0 8px;
        }

        .boolean-toggle input + label:last-of-type {
            border-left: none;
            border-radius: 0 8px 8px 0;
        }

.form-check {
    margin-top: 10px;
}

.validation-summary {
    font-size: 12px;
    line-height: 16px;
    color: var(--status-error-text-color);
}

@media (max-width: 800px) {
    .boolean-toggle input + label {
        padding: 0.75rem 0.25rem;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card {
        width: 90%;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .login-card {
        margin-top: 4rem;
    }
}
