* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  background-image: url("../images/bg_bw.png");
  background-repeat: no-repeat; 
  background-size:cover;
  background-color: rgb(255, 255, 255);
}


.container {
    border-radius: 30px;
    background-color: white;
    opacity: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px;
    text-align: center;
}

h1 {
    font-size:48pt;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 100;
}
.subtitle {
    font-family:alef;
    font-size:30pt;
}

.custom_input {
	align-items: center;
	position: relative;
    display:block;
    margin:auto;
	width: 60%;
}

.input {
	font-size: 20px;
	padding: 8px 12px;
    margin:5px;
	width: 90%;
	padding-left: 40px;
	outline: none;
	background: #FFFFFF;
	color: #000000;
	border: 1px solid #C4D1EB;
	border-radius: 8px;
	box-shadow: 3px 3px 2px 0px #E2E2E2;
	transition: .3s ease;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.input:focus {
	background: #F2F2F2;
	border: 1px solid #B6BECC;
	border-radius: 10px;
}

.input::placeholder {
	color: #DDDDDD;
}

.appLogo {
    width:50%;
    display:block;
    margin:auto;
}

.svg_icon {
	position: absolute;
	left: 10px;
	fill: #CACFDC;
	width: 16px;
	height: 16px;
}

.inputSubmit {
    border-radius: 30px;
    font-size: 18px;
    margin-top:10px;
    padding: 5px;
    width: 50%;
    background-color: rgb(158, 157, 157);
}

.logocontainer {
    position:absolute;
    right:10px;
    bottom:10px;
}

.notification {
    display: block;
    margin: 16px auto 22px auto;
    padding: 14px 18px 14px 48px;
    border: 1px solid #e6b4b4;
    border-left: 6px solid #b32626;
    border-radius: 6px;
    background: #fff1f1;
    color: #5f1717;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    box-shadow: 0 8px 22px rgba(40, 16, 78, 0.12);
    position: relative;
}

.notification::before {
    content: "!";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #b32626;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    line-height: 1;
}

@media (max-width: 800px) {
    .flexcontainer {
        display: flex;
        flex-direction: column;
    }

    .container {
        top: 50px;
        left:50%;
        width: 90%;
        position: inline-block;
        transform: translate(-50%);
        padding: 10px;
    }

    .logocontainer {
        position: inline-block;
        flex-direction: column;
    }

    .custom_input {
        width: 90%;
    }
  }

  @media (max-height: 600px) {
    .logocontainer {
        display:none;
    }
  }
