﻿body {
    background-image: url('register-bg.jpg');
    width:100%;
    height:100%;
    background-size:cover;
    /*position:fixed;
    overflow:hidden;*/
}
.register-wrapper {
    width: 100%;
    height: auto;
    background: rgba(221, 221, 221, 0.35);
    box-shadow: -1px -1px 21px 4px rgba(255, 255, 255, 0.7215686274509804);
    padding: 30px;
    border-radius: 20px;
    margin: 80px auto;
}
.register-wrapper label{
    color:white;
    font-weight:normal;
    margin-left: 5px;
}
.register-wrapper label span{
    color:red;
}
.register-wrapper h3{
    color:#fdbc03;
    padding-bottom:5px;
    border-bottom:1px dotted #fff;
}
.register-wrapper .form-group {
    margin-bottom: 15px;
}
.text {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
}
.submit{
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.register-wrapper a{
    float:right;
    color:white;
}
.register-wrapper a:hover{
    color:#fdbc03;
    text-decoration:none;
}
.register-wrapper a img{
    height:30px;
    margin-right:10px;
}
.radio-btn{
    background:#fff;
    width:100%;
    height:auto;
    border-radius: .25rem;
    padding:0px 5px;
}
.radio-btn label{
    color:black;
}
.radio-btn input[type="radio"], input[type="checkbox"] {
    box-sizing: border-box;
    margin-left: 14px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .register-wrapper .form-group {
        margin-bottom: 0px;
    }
}

