#body {
    height: calc(100vh);
    background-image: url("../img/bg-SignIn.png");
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;


    color: #000;
    font-family: Switzer, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* box */
.sign-up-box {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 60%;
    height: 100%;
    overflow-y: scroll;

    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(43, 59, 93, 0.29);
}

/* logo */
.sign-up-box .logo {
    width: calc(100% - 50px);
    margin-left: 50px;
    margin-bottom: 44px;
    padding-top: 40px;

    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    margin-right: 10px;
    width: 30px;
    height: 20px;
}

.sign-up-box .logo span {
    color: #07133B;
    font-family: Tourney, sans-serif;
    font-size: 16px;
    font-weight: 900;
}

/*response*/
.response {
    display: none;
    width: 100%;
    padding: 15px 20px;
    align-items: flex-start;
    border-radius: 8px;
    justify-content: space-between;
    margin-bottom: 40px;

    color: #161412;
    font-family: Switzer, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.response.success {
    border: 1px solid #0080FF;
    background: rgba(0, 150, 247, 0.10);
}

.response.failed {
    border: 1px solid #E22929;
    background: rgba(226, 41, 41, 0.10);
}

.response i {
    display: none;
    margin-right: 10px;
    font-size: 20px;
    font-weight: 900;
}

.response i.fa-xmark {
    font-size: 18px;
    font-weight: 400;
    margin-right: 0;
    cursor: pointer;
}

.response.success i.fa-check-circle,
.response.success i.fa-xmark {
    display: block;
    color: #0096F7;
}

.response.failed i.fa-circle-exclamation,
.response.failed i.fa-xmark {
    display: block;
    color: #E22929;
}

.response.failed i.fa-check-circle {
    display: none;
}

.response.failed div {
    color: #9B1D1C;
    flex: 1;
}

.response.failed div span {
    font-weight: 600;
    display: block;
    margin-bottom: 18px;
}

.response.failed div ul {
    margin-left: 25px;
}

.response.failed div ul li {
    margin-bottom: 18px;
    list-style-type: unset;
}

.response .success div span {
    font-weight: 600;
}

.response.success div a {
    color: #0096F7;
}

/* form */
.sign-up-box form {
    max-width: 25.375rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form .content{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content > div.text {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.94rem;
}

.content > div .input-title {
    display: inline-block;
    margin-bottom: 0.38rem;
}

.content > div.text > span {
    color: #161412;
    font-size: 1.875rem;
    font-family: Swansea, sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.content > div.text div span {
    color: #000;
    opacity: 0.6000000238418579;
    font-size: 0.875rem;
    font-family: Switzer, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.content > div.text div a {
    color: #0096F7;
}

.content > div span.error {
    visibility: hidden;
}

.content > div input {
    width: 100%;
    height: 2.75rem;
    border-radius: 0.375rem;
    border: 1px solid #D3DBE2;
    background: #FFF;
    box-shadow: 0 2px 1px 0 rgba(16, 24, 40, 0.00);

    font-size: 0.875rem;
    font-family: Switzer, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #000;
}

.content > div div.password-input {
    display: flex;
    align-items: center;
}

.content div.password-input i.fa {
    position: relative;
    right: 30px;
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-weight: 900;
    font-size: 13px;
    color: #828EA6;
    cursor: pointer;
    width: 0;
}

.content .name {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 24px;
 }
.content .name>div{
    display: flex;
    flex-direction: column;
    width: 47%;
}

.content .city-and-state {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.content .city-and-state>div{
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 47%;
}

.rl-input{
    height: 42px;
}

.content div.select {
    margin: 0;
}

div.full-phone {
    display: flex;
    align-items: center;
}

div.full-phone select[size] {
    width: 130px;
    height: 44px;
    color: #161412;
    font-size: 0.875rem;
    line-height: normal;
    border: 1px solid #D3DBE2;
    border-right: none;
    border-radius: 0.3125rem 0 0 0.3125rem;
}

div.full-phone input {
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
    position: relative;
    right: 18px;
}

span.error {
    color: #D83E3E;
    font-size: 14px;
    font-family: Switzer, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0.25rem;
    visibility: hidden;
}

/* verification */
#verification {
    flex-direction: column;
    margin-bottom: 26px;
}

#verification > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#verification > div > div:nth-child(1) {
    display: flex;
    align-items: center;
    height: 60px;
    justify-content: space-between;
    flex: 1;
    margin-bottom: 0.81rem;
}

#verification > div > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#verification img {
    height: 60px;
    width: 257px;
}

#verification i {
    height: 28px;
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #0080FF;
    font-size: 28px;
    cursor: pointer;
}

#verification .fa-redo {
    width: 28px;
}

#verification .fa-volume {
    width: 28px;
}

#verification .fa-pause {
    display: none;
    width: 28px;
}

/*agree*/
.content div.agree {
    display: flex;
    margin-bottom: 1.25rem;
    flex-direction: column;
}

div.agree div {
    display: flex;
    gap: 8px;
    margin-bottom: 0.62rem;
}

div.agree div > span > a {
    color: #0096F7;
}

/* submit button*/
button.create-account {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 0.625rem;
    opacity: 0.4;
    background: #031242;
    margin-bottom: 20px;

    color: #FFF;
    font-size: 18px;
    font-weight: 500;
}

button.create-account:hover {
    opacity: 1;
    background-color: #0080FF;
}

/*copyright*/
.copyright {
    padding: 0 10px;
    color: #161412;
    opacity: 0.6;
    text-align: center;
    margin-bottom: 1rem;
}

@media only screen and (max-width: 750px) {
    #body {
        background-image: none;
        justify-content: center;
    }

    .sign-up-box {
        width: 100%;
        height: 100%;
        overflow-y: scroll;
    }

    .sign-up-box .logo {
        justify-content: center;
    }


    .logo img {
        margin-left: 0;
    }
}

@media only screen and (max-width: 450px) {
    form {
        padding: 0 15px;
    }

    .sign-up-box .logo {
        padding-top: 20px;
        margin-bottom: 20px;
        margin-left: 0;
    }
}
