* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    /* background-color: #fff; */
    color: #fff;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

[class*="col-"] , .row {
    padding-left: 0;
    padding-right: 0;
}

.set-register-form {
    position: relative;
}

.bg-register-form {
    /* background:url(img/bg.jpg);
    background-size: 100% 100%;
    height: 100vh; */
    background-image: url(img/bg.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
}

.box-register-form {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 50px 15%;
}

.color-left {
    background-color:rgba(17, 79, 95, 0.5);
}
.color-right {
    background-color:rgba(16, 13, 13, 0.38);
}

.box-content{
    padding: 35px 60px;
    text-align: center;
}
.box-content .logo{
    height: 30%;
    width: 30%;
}
.box-content .price{
    height: auto;
    width: 80%;
    padding: 35px 0px;
}
.content-box-form{
    text-align: center;
}
.box-content h3 , .content-box-form h3{
    font-size: 110%;
    letter-spacing: 2px;
    /* padding: 0% 0px 30% 0px; */
    font-weight: 300;
}

.content-box-form h3 {
    padding: 0% 0px;
}

.box-content h3:last-of-type{
    font-size: 100%;
    padding: 3% 0px;
}
.box-content h1, .content-box-form h1 {
    font-size: 170%;
    letter-spacing: 4px;
    font-weight: 300;
}
.box-content h1:last-of-type{
    font-size: 140%;
}

.box-form {
    padding: 40px 20% 40px 30px;
}

.box-form label {
    margin-bottom: 0px;
    font-size: 16px;
}

input[type=text]{
    width:100%;
    margin-bottom:20px;
    color:rgb(65, 65, 65);
    font-size: 90%;
}
input[type=text]:focus{
    border: 2px solid rgb(67, 156, 149);
}

/*
::-webkit-input-placeholder { Chrome/Opera/Safari
    color: pink;
}
::-moz-placeholder {  Firefox 19+ 
  color: pink;
}
:-ms-input-placeholder { IE 10+ 
  color: pink;
}
:-moz-placeholder {  Firefox 18- 
  color: pink;
}
*/
input[type=text]::-webkit-input-placeholder{ 
    font-size: 75%;
}
input[type=text]::-moz-placeholder{ 
    font-size: 75%;
}
input[type=text]:-ms-input-placeholder{ 
    font-size: 75%;
}

input[type=text]:-moz-placeholder { 
    font-size: 75%;
}
input[type=text]:last-of-type{
    margin-bottom:30px;
}

.btn {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 0px;
}

.btn:link,
.btn:visited,
input[type=submit] {
    display: inline-block;
    padding: 10px 40px;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 0px;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: none;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 0px;
}