

/*
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {

    #signup_form {
        width: 65%;
        padding: 30px;
        margin: auto !important;
    }

}

/*
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {

    #signup_form {
        width: 65%;
        padding: 30px;
        margin: auto !important;
    }

}

/*
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
    #signup_form {
        width: 65%;
        padding: 30px;
        margin: auto !important;
    }

}

/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    #signup_form {
        width: 65%;
        padding: 30px;
        margin: auto !important;
    }
}

/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
    #signup_form {
        width: 65%;
        padding: 30px;
        margin: auto !important;
    }
}

/*
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
    #signup_form {
        width: 100%;
        margin: auto !important;
        background: #ffffff;
        padding: 10px;
        box-sizing: border-box;
    }



    input, textarea, select {
        width: 350px;
        box-sizing: border-box;
    }

}

.radio-input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.radio-input > div {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
}


.core {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: inherit;
}

input[type=radio],
input[type=checkbox] {
    width: 50px !important;
}

.fax > p > input[type=text]:nth-child(1),
.fax > p > input[type=text]:nth-child(3) {
    width: 125px !important;
}

.fax > p > input[type=text]:nth-child(2) {
    width: 245px !important;
}

.phone-deet > p > input[type=text]:nth-child(1),
.phone-deet > p > input[type=text]:nth-child(3) {
    width: 125px !important;

}

.phone-deet > p > input[type=text]:nth-child(2) {
    width: 245px !important;
}

.city_and_province,
.country_and_zipcode
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.city_and_province p,
.country_and_zipcode p {
    padding: 1%;
    width: 42%;
}

.account-data-one > div > p > input[type=text],
.account-data-one > div > p > select{
    width: 95% !important;
}

input[type='text'], input[type='password'], select, input[type='email'] {
    border: 1px solid #292929;
}

label {
    margin: 10px 5px 10px 5px !important;
}

button {
    width: auto;
    background: #08c;
    border: 1px solid #06a;
    color: #FFFFFF;
    font-weight: bold;
    margin-top: 15px;
    cursor: pointer;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 10px;
}