/* CSS Document */
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;1,300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 13px;
    font-kerning: none;
    text-decoration: none;
    outline: none;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: transparent;
}
html, 
:root > body, 
:root > body > form,
:root > body > form > div,
:root > body > form > div > div {
    height: 100%;
    width: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow: hidden;
	position: relative;
}
:root > body > form > div,
:root > body > form > div > div {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0
}

:root > body {
    position: relative;
}

body {
	background-image: url("../Images/oops.jpg");
	background-color:#fff;
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: contain;
}

body::before {
	position: absolute;
	content: '';
	width: 200px;
	height: 80px;
	background-size: contain;
	background-position: right top;
	top: 30px;
	right: 50px;
	display: block;
	background-image: url('../Images/logo.png');
	background-repeat: no-repeat;
}

:root > body > form > div > div > div {
	left: 50%;
	width: 50%;
	padding-right: 5%;
	top: 40%;
	height: 60%;
	position: absolute;
}

h1 {
    font-size: 25px;
    margin-bottom: 15px;
    color: #e10a0a;
    font-weight: 400;
}

h2 {
    font-size: 19px;
    font-weight: 400;
    padding-top: 3px;
    margin-bottom: 10px;
}

h3 {
    font-size: 13px;
    font-weight: 600;
    padding-top: 3px;
    margin-bottom: 3px;
    color: #e10a0a;
}

@media screen and (max-width: 599px) {

    body {
        background-image:  url(../Images/oops.jpg);
        background-color: #fff;
        background-repeat: no-repeat;
 
        background-size: contain;
        /*     background-position: 35% 150%;
        background-size: 100%;*/
    }
	
	:root > body > form > div > div > div {
		left: 0;
		width: 100%;
		padding-right: 5%;
		padding-left: 5%;
		top: 15%;
		height: 90%;
		position: absolute;
	}
	
}