*{
    margin: 0;
    padding: 0;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(255, 255, 255);
}
.navbar{
    position: fixed;
    z-index: 1;
    float: left;
    width: 100%;
    height: 50px;
    background-color: rgb(255, 95, 63);
}
.navbar-image{
    float: left;
    width: auto;
    height: 50px;
    margin: 0 0 0 2%;
}
.register{
    float: left;
    width: 100%;
    height: 100%;
    margin-top: 50px;
    background: url("images/image-mobile.jpg") no-repeat center center/ cover;
}
input[type=text]{
    width: 80%;
    margin: 40px 10% 0 10%;
    padding: 10px 0 8px 0;
    font-size: 17px;
    text-align: center;
    border-style: none;
    border-radius: 8px;
    border-bottom: 4px solid rgb(255, 95, 63);
    outline: none;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}
input[type=tel]{
    width: 80%;
    margin: 10px 10% 0 10%;
    padding: 10px 0 8px 0;
    font-size: 17px;
    text-align: center;
    border-style: none;
    border-radius: 8px;
    border-bottom: 4px solid rgb(255, 95, 63);
    outline: none;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}
input[type=text]:focus,
input[type=tel]:focus{
    border-bottom: 4px solid rgb(255, 0, 0);
}
.register-checkbox{
    width: 72%;
    margin: 10px 10% 0 10%;
    padding: 10px 4% 10px 4%;
    font-size: 17px;
    border-style: none;
    border-radius: 8px;
    border-bottom: 4px solid rgb(255, 95, 63);
    outline: none;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}
.register-checkbox-text{
    text-align: center;
}
input[type="checkbox"]{
    margin: 20px 0 0 2%;
}
input::placeholder{
    color: rgb(0, 0, 0);
}
input::-moz-placeholder{
    color: rgb(0, 0, 0);
    opacity: 1;
}
button{
    width: 80%;
    margin: 10px 10% 20px 10%;
    padding: 10px 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-style: none;
    border-radius: 8px;
    border-bottom: 4px solid rgb(255, 255, 255);
    outline: none;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 95, 63);
}
.footer{
    float: left;
    width: 96%;
    height: auto;
    padding: 20px 1% 30px 3%;
    font-size: 18px;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 95, 63);
}
.footer-info{
    margin-top: 10px;
}
@media screen and (min-width: 768px){
    .navbar{
        height: 54px;
    }
    .navbar-image{
        height: 54px;
        margin: 0 0 0 10%;
    }
    .register{
        margin-top: 54px;
    }
    input[type=text]{
        width: 60%;
        margin: 42px 20% 0 20%;
        font-size: 18px;
    }
    input[type=tel]{
        width: 60%;
        margin: 12px 20% 0 20%;
        font-size: 18px;
    }
    .register-checkbox{
        width: 52%;
        margin: 12px 20% 0 20%;
        font-size: 18px;
    }
    button{
        width: 60%;
        margin: 12px 20% 20px 20%;
        font-size: 18px;
    }
    .footer{
        width: 80%;
        padding: 20px 10% 30px 10%;
    }
    .footer-info{
        margin-top: 12px;
    }
}
@media screen and (min-width: 992px){
    .navbar{
        height: 60px;
    }
    .navbar-image{
        height: 60px;
        margin: 0 0 0 10%;
    }
    .register{
        margin-top: 60px;
        background: url("images/image-desktop.jpg") no-repeat center center/ cover;
    }
    input[type=text]{
        width: 40%;
        margin: 44px 30% 0 30%;
        font-size: 18px;
    }
    input[type=tel]{
        width: 40%;
        margin: 14px 30% 0 30%;
        font-size: 18px;
    }
    .register-checkbox{
        width: 32%;
        margin: 14px 30% 0 30%;
        font-size: 18px;
    }
    button{
        width: 40%;
        margin: 14px 30% 20px 30%;
        font-size: 18px;
    }
    .footer{
        width: 80%;
        padding: 20px 10% 30px 10%;
        font-size: 19px;
    }
    .footer-info{
        margin-top: 14px;
    }
}