﻿/* 
  ##Device = All
  ##Screen = Styles for all resolutions
*/

/* || Title */

#form-title {
    text-align: center;
    padding-bottom: 4rem;
}

    #form-title h4 {
        color: #002239;
        font-size: 34px;
        line-height: 51px;
        font-weight: 700;
        margin: 0;
    }

/* ... */

/* || Structure */

.form-group {
    padding: 0.7rem 0rem;
}

.form-group-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 0.5em;
    margin-bottom: 0.125rem;
}

    .form-group-check .form-check-input {
        margin-right: 0;
    }

    .form-group-check .form-check-label {
        display: inline;
        padding: 0;
        margin-left: 0.5rem;
    }
/* ... */

/* || Button */
.btn-green {
    background: #6A9C08;
    color: white;
    width: 100%;
    border-radius: 3px;
}
/* ... */

/* || Text Area */
textarea {
    resize: none;
}
/* ... */

/* || Validation*/
.form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
    color: black;
}

.form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
    color: black;
}
/* ... */
/* 
  ##Device = Desktops big
  ##Screen = 1920px to higher resolution desktops
*/
@media (min-width: 1920px) {
    /* CSS */
    form {
        padding: 0rem;
    }
}


/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) and (max-width:1919px) {

    /* CSS */
    form {
        padding: 0rem;
    }
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {

    /* CSS */
    form {
        padding: 0rem;
    }
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {

    /* CSS */

}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    /* CSS */

}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {

    /* CSS */

}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

    /* CSS */

}
