@font-face {
	font-family: "Raleway";
	src: url('/vault/static/css/fonts/raleway_latin.woff2') format('woff2')
  }

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: Raleway, sans-serif;
}

body {
    width: 100%;
    background-image: url("../images/forest.webp");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	width: 90vw;
	padding: 0;
}

.screen {
	background: linear-gradient(90deg, #4600a1, #005499);
	position: relative;
	height: 500px;
	width: 350px;
	box-shadow: 0px 0px 24px #000000;
    border-radius: 20px;
}

.screenContent {
	z-index: 1;
	position: relative;
	height: 80%;
}

.screenBG {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);	
}

.screenBGShape {
	transform: rotate(45deg);
	position: absolute;
}

.screenBGShape1 {
	height: 500px;
	width: 250px;
	background: #FFF;
	top: -60px;
	right: 150px;
	border-radius: 0 32px 0 0;
}

.screenBGShape2 {
	height: 220px;
	width: 220px;
	background: #014369;
	top: 200px;
	right: -150px;
	border-radius: 32px;
}

.screenBGShape3 {
	height: 540px;
	width: 190px;
	background: linear-gradient(270deg, #549fa4, #077d81);
	top: -24px;
	right: 0;
	border-radius: 32px;
}

.login {
	width: 90%;
	margin-left: 5%;
	padding: 30px;
	padding-top: 50px;
}

.loginField {
	padding: 20px 0px;
	position: relative;
}

.loginInput {
	border: none;
	border-bottom: 2px solid #d8d7d7;
	background: none;
	padding: 15px;
	padding-left: 24px;
	font-weight: 700;
	width: 75%;
	transition: .2s;
}

.loginInput:active,
.loginInput:focus,
.loginInput:hover {
	outline: none;
	border-bottom-color: #014369;
}

.loginButton {
	background: #fff;
	font-size: 14px;
	margin-top: 80px;
    /* margin-left: 15px; */
	padding: 15px 15px;
	border-radius: 26px;
	border: 2px solid #D4D3E8;
	text-transform: uppercase;

	width: 100%;
	color: #2c0072;
	box-shadow: 0 0 10px 0 rgb(0, 0, 0);
	transition: .2s;
}

.loginButton:hover {
	border-color: #000000;
	cursor: pointer;
}

.loginText {
    width: 80%;
    text-align: center;
    vertical-align: middle;
	font-weight: bold;
}

.notificationBody{
    position: fixed;
    z-index: 1000;
    left: 50%;
    transform: translate(-50%, -80px) scale(0.9);
    height: 50px;

    display: flex;
    padding: 12px;
    padding-right: 20px;

    border-radius: 50px;
    color: white;
    background-color: rgba(20, 20, 20, 0.800);
    box-shadow: 0 0 20px 0 rgb(0, 0, 0);
}

.notificationBody-appear{
    transition-duration: 500ms;
    transform: translate(-50%, 10px) scale(1);
}

.notificationBody-disappear{
    transition-duration: 500ms;
    transform: translate(-50%, -80px) scale(0.6, 0.8);
}

.notificationIcon{
    float: left;
    width: 50px;

    margin: 0;
    padding-top: 20px;
    padding-left: 0px;

    text-align: center;
}

.notificationIcon > p {
    position: relative;
    top: -20px;
    font-size: 30px;
}

.notificationText{
    position: relative;
    top: 2px;
    margin: 0;
    padding: 0;

    display: inline-block;
    white-space: nowrap;
    user-select: none;
}

.notificationText > p {
    font-family: 'Courier New', Courier, monospace;
    font-size: larger;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
	.container {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 90vh;
	}

	.login {
		width: 100% !important;
		margin-left: 0% !important;
		padding: 30px;
		padding-top: 50px;
	}

	.screenBGShape2{
		display: none;
	}

	.screenBGShape3{
		display: none;
	}
}