* {
    border: 0;
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
    line-height: inherit;
    font-size: 100%;
    font-weight: inherit;
    font-family: inherit;
    text-decoration: none;
    color: inherit;
    list-style: none;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    height: 100%;
    font-size: 20px;
}

p {
    padding-bottom: 30px;
}

b {
    font-weight: bold;
}

.wrapper {
    width: 100%;
    min-height: 100%;
    padding-bottom: 50px;
}

.logo {
    padding-top: 30px;
}

.title {
    color: #ffffff;
    font-size: 33px;
    padding-bottom: 30px;
}

.info {
    font-weight: bold;
    padding-bottom: 30px;
}

.label-cont {
    border-bottom: 1px solid #6bcad1;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.responsive-img {
    display: inline-block;
    max-width: 100%;
}

.error {
    border: 1px solid #ff0000;
}

.glyphicon.fast-right-spinner {
    display: none;
    -webkit-animation: glyphicon-spin-r 1s infinite linear;
    animation: glyphicon-spin-r 1s infinite linear;
}

@-webkit-keyframes glyphicon-spin-r {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.form-group {
    margin-bottom: 20px;
}

.modal_cont {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
}

.modal_body {
    position: absolute;
    width: 400px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    border-radius: 10px;
}

.btn-cont {
    text-align: center;
    margin-top: 50px;
}

.reg_btn {
    margin-top: 40px;
    padding: 30px 120px;
    background: #ce000c;
    color: #ffffff;
    text-align: center;
    font-size: 30px;
}

.tlogo {
    max-width: 200px;
    padding-top: 20px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}