div.form {
    display: flex;
    width: 100%;
    justify-content: center;
}

div.contact-information {
    margin-right: 81px;
    margin-bottom: 112px;
}

div.registration {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

div.registration > h1 {
    
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;

    text-align: center;
    letter-spacing: 1px;
    
    text-transform: uppercase;

    color: var(--gray);

    margin-top: 48px;
}

div.registration > div.go-to-login {
    display: flex;
    flex-direction: row;
    width: 100%; 
    margin-bottom: 112px;
    margin-top: 4px;
}

div.registration > div.go-to-login > p {
    letter-spacing: 0.3px;
    color: var(--gray2);
    
    
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

div.registration > div.go-to-login > a {
    color: var(--primary);
    text-decoration: none;
}

div.registration > div.go-to-login > a > p {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;

    color: var(--primary);
    margin-left: 5px;

    cursor: pointer;
}

div.registration > div.go-to-login > a > p:hover {
    text-decoration: underline;
}

div.billing-address {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

div.billing-address > button {
    width: 315px;
    margin-top: 32px;
    margin-right: 0;
}

div.input-group {
    display: flex;
    flex-direction: column;
}

div.input-group > label {
    margin-bottom: 7px;
}

div.input-group > input {
    width: 536px;
    margin-bottom: 16px;
}

div.identification-number-inputs {
    display: flex;
    flex-direction: row;
}

div.identification-number-inputs > div.identification-number-input {
    display: flex;
    flex-direction: column;
}
div.identification-number-input > input {
    width: 260px;
}

div.identification-number-input:first-child {
    margin-right: 16px;
}

@media only screen and (max-width: 1024px) {
    
    div.form{
        flex-direction: column;
        width: 100%;
        margin: 0px;
    }
    
    div.registration{
        width: 100%;        
    }
    
    div.input-group{
        width: 100%;
    }
    
    div.input-group > input {
        width: 100%;
        margin-bottom: 16px;
    }

    div.contact-information {
        margin-right: 0px;
        margin-bottom: 32px;
    }

    div.billing-address {
        width: 100%;
    }

    div.identification-number-inputs > div.identification-number-input {
        width:100%;
    }
    div.identification-number-input > input {
        width: 100%;
    }
    
    div.identification-number-input:first-child {
        margin-right: 16px;
    }

    div.billing-address > button {
        width: 100%;
        margin-top: 32px;
        
    }
    
    div.registration > div.go-to-login {
        width: auto; 
    
    }
}