.wrapper{
    min-height: 95vh;
}

.card{
    background-color: #fafafa;
    border-radius: 10px;
    margin: 15px;
    max-width: 50%;
    overflow: hidden;
}

.text{
    background-color: #0c2663;
    border-radius: 10px 0 0 10px;
    min-width: 50%;
    min-height: 40vh;
    padding: 10px;
    color: white;
}

.text .title,
.text p{
    margin-top: 20px;
}

.text p{
    font-size: 13px;
    padding: 0px 30px;
}

.image{
    max-width: 50%;
}

.form{
    min-width: 50%;
    min-height: 40vh;
    text-align: center;
    padding: 30px;
}

.form h1{
    background-color: #0c2663;
    color: white;
    padding: 2vh;
    padding-left: 7vh;
    padding-right: 7vh;
    margin: 0 0 10px 0;
    border-radius: 10px;
}

form p label{
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    flex-wrap: wrap;
    margin-top: 10px;
}

#id_email,
#id_first_name,
#id_last_name,
#id_phone_number,
#id_address,
#id_password1,
#id_password2{
    border-radius: 0px;
    background-color: transparent;
    color: #000;
    outline: none;
    outline-style: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: solid 1px #000;
    padding: 3px 10px;
    width: 100%;
}

#id_email:focus,
#id_first_name:focus,
#id_last_name:focus,
#id_phone_number:focus,
#id_address:focus,
#id_password1:focus,
#id_password2:focus{
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: 2px 2px;
}

.input{
    border: 1px solid gray;
    margin-left: 10px;
}

.label{
    text-align: start;
    margin-top: 15px;
}

.help_text{
    font-size: 12px;
    text-align: start;
}

.help_text p{
    text-align: start;
}

.button{
    border: none;
    background-color: #0D0E27;
    width: 100%;
    color: white;
    margin-top: 15px;
    font-size: 14px;
    padding: 10px;
    border-radius: 10px;
}

.button:hover{
    background-color: #1b1c51;
}

.link{
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
}

@media screen and (max-width:414px) {
    .card{
        max-width: 100%;
    }
}