.signup_flex_container{
    display: flex;
    flex-direction: column;
    margin-top: 150px;
    text-align: center;
    width: 100%;
    overflow-wrap: break-word;
}
.signup_flex_with_background{
    display: flex;
    flex-direction: column;
    background-color: rgba(236, 236, 236, 1);
    justify-content: center;
    align-items: center;
    width: 700px;
    margin: auto;
    padding: 50px;
}

.signup_crbn_logo_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.signup_crbn_logo{
    width: 300px;
}

.custom_header_text{
    font-family: 'Unica One';
    font-size: 32px;
    overflow-wrap: break-word;
    font-weight: 400;
    line-height: 1.5;
}
.orange_text{
    color: #fa5000;
}

.signup_form{
    display: flex;
    flex-direction: column;
    width: 90%
}

.signup_input_flex{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
}
.signup_label{
    font-weight: normal;
    color: rgba(0, 0, 0, 1);
    font-family: "Unica One";
    text-transform: uppercase;
    font-size: 18px;
    justify-content: flex-start;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 0;
}

.signup_input{
    width: 100%;
    border-width: 0px;
    border-color: rgba(255, 255, 255, 1);
    background-color: rgba(252, 252, 252, 1);
    color: #000;
    font-family: "Karla";
}

.error_text{
    color: red;
    font-family: "Karla";
    font-size: 14px;
    margin: 0;
    padding: 0;
}


.signup_orange_button{
    width: 100%;
    background-color: #fa5000;
    color: #fff;
    font-family: "Karla";
    font-size: 18px;
    border-width: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.signup_orange_button:hover{
    background-color: white;
    color: #fa5000;
}
.signup_orange_button:active{
    background-color: white;
    color: #fa5000;
    border-color: #fa5000;
}

.signup_footer_col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 25px;
    gap: 10px;
}
.signup_flex_row{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}
.signup_flex_row label{
    margin: 0;
}

.signup_policy_link{
    width: 100%;
    background-color: black;
    color: white;
    text-decoration: none;
    height: 40px;
    line-height: 40px;;
}
.signup_policy_link:hover{
    background-color: white;
    color: black;
}

.no_margin{
    margin: 0;
}


@media screen and (max-width: 800px){
    .signup_flex_with_background{
        width: 100% !important;
        padding: unset;
        height: 100%;
    }
    .signup_flex_container{
        margin-top: unset;
        height: 100%;
    }
}
