/** Background **/
body {
    /* background-image: url("account/image/bg.jpg"); */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0px;
    height:100%;
    width:100%;
}


.margintop {
    margin-top: 200px;
}

/** form **/
.formst {
    float: right;
    margin-top: 200px;
}

.formbg {
    padding: 2.5rem;
     background:#05050547; 
		margin-top:-20px;
}

.login-support {
    color: #fff;
}

    .login-support:hover {
        color: #000;
    }

.text-holder h1 {
    font-weight: 200;
    font-size: 3.125rem;
}

.text-holder h2 {
    font-weight: 500;
}

.text-holder h1 strong {
    font-weight: 900;
    color: #00b0f0;
}

.btn-primary-transparent {
    background:  #eb1c24;
    padding: 10px 0;
    display: block;
    width: 100%;
    font-size: 18px;
    border: 2px solid  #eb1c24;
    border-radius: 0;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

    .btn-primary-transparent:hover {
        color: #fff;
        background: transparent;
        border: 2px solid #eb1c24;
    }



/* The container */
.cbcontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100px;
    float: left;
    color:white;
}

    /* Hide the browser's default radio button */
    .cbcontainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.cbcontainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.cbcontainer input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.cbcontainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.cbcontainer .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

a {
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

    a:hover {
        color:#eb1c24;
        text-decoration: underline
    }
	
.logo-set{
	width:40%;
}	
@media only screen and (max-width: 425px) {
.logo-set{
	width:72%;
}		
}

@media only screen and (width:768px) {
.logo-set{
	width:28%;
}		
}

.text-black{
	color:#fff;
}		