.bg-img {
    /* The image used */
    background-image: url("../images/bg-02.jpg");
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);

    min-height: 1000px;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.bg-img2 {
    /* The image used */
    background-image: url("../images/bg-03.jpg");
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);

    min-height: 100vh;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

}

/* Add styles to the form container */
.container {
    position: absolute;
    right: 0;
    margin: 20px !important;
    max-width: 400px;
    padding: 16px;
    background-color: white;
    min-height: 75vh;
}

/* Full-width input fields */
input[type="text"],
input[type="password"] {
    width: 90%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
}

input[type="text"]:focus,
input[type="password"]:focus {
    background-color: #ddd;
    outline: none;
}

/* Set a style for the submit button */
.btn {
	background: #d41872;
	background: -webkit-linear-gradient(left, #a445b2, #d41872, #fa4299);
	background: -o-linear-gradient(left, #a445b2, #d41872, #fa4299);
	background: -moz-linear-gradient(left, #a445b2, #d41872, #fa4299);
	background: linear-gradient(left, #a445b2, #d41872, #fa4299);
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

.btn:hover {
    opacity: 1;
}

#mainTop {
    margin-bottom: 40px;
}

#errorMsg {
	color: red;
	font-size: 14px;
	text-align: center;
}

#title {
    margin-top: 35%;
}

.grecaptcha-badge {
    display: none;
}