@import url('https://fonts.googleapis.com/css?family=Montserrat&subset=latin');

body{
    font-family: "Montserrat", Times, serif;
}

.mandatory_field {
    font-weight: bolder;
    color: red;
    margin-left: 7px;
}

/* X Small devices (landscape phones, 576px and up) */
@media (min-width: 300px) {
    .custom-margin {
        margin-left: 5px;
    }
    
    .form_field {
        text-align: start; 
        font-weight: bold;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .custom-margin {
        margin-left: 5px;
    }

    .form_field {
        text-align: end; 
        font-weight: bold;
    }
}

/*  Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .custom-margin {
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .form_field {
        text-align: end; 
        font-weight: bold;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .custom-margin {
        margin-left: 20%;
        margin-right: 20%;
    }

    .form_field {
        text-align: end; 
        font-weight: bold;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .custom-margin {
        margin-left: 20%;
        margin-right: 20%;
    }

    .form_field {
        text-align: end; 
        font-weight: bold;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .custom-margin {
        margin-left: 23%;
        margin-right: 23%;
    }
    
    .form_field {
        text-align: end; 
        font-weight: bold;
    }
}

.form-box {
    border: gray 2px dotted;
    border-radius: 25px;
}