@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

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

body {
	background-image: url('/assets/img/bgfoto.png');
    background-repeat: no-repeat;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
    overflow-y: hidden;
    overflow-x: hidden;
}

.screen {
	background: linear-gradient(90deg, #2f88ef, #034ea2);
	position: relative;
	height: 600px;
	width: 450px;
	box-shadow: 0px 0px 15px black;
    border-radius: 30px;
}

.screen__content {
	z-index: 1;
	position: relative;
	height: 100%;
}

.screen__background {
	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);
}

.login {
	width: 320px;
	padding: 30px;
	padding-top: 20px;
}

.login__field {
	padding: 15px 0px;
	position: relative;
}

.login__icon {
	position: absolute;
	top: 30px;
	color: #034ea2;
}

.login__input {
    color: black;
	border: none;
	border-bottom: 2px solid #D1D1D4;
	background: none;
	padding: 10px;
	padding-left: 24px;
	font-weight: 700;
	width: 100%;
	transition: .2s;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-bottom-color: #034ea2;
}

.login__submit {
	background: #fff;
	font-size: 14px;
	margin-top: 30px;
	padding: 16px 20px;
	border-radius: 26px;
	border: 1px solid #D4D3E8;
	text-transform: uppercase;
	font-weight: 700;
	display: flex;
	align-items: center;
	width: 100%;
	color: #034ea2;
	box-shadow: 0px 2px 2px #034ea2;
	cursor: pointer;
	transition: .2s;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	border-color: #034ea2;
	outline: none;
}

.button__icon {
	font-size: 24px;
	margin-left: auto;
	color: #034ea2;
}

.title{
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.title h1 {
    margin-top: 10px;
}

.login-logo{
    max-height: 800px;
    max-width: 200px;
}

.img-back {
    color: #034ea2;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.text-head {
    position: relative;
    margin-top: 30px;
}

.text-head h1 {
    color: #75C7FB;
    font-weight: 900;
    font-size: 3.2rem;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

input::placeholder{
    color: black;
    opacity: .8;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: transparent;
    color: black;
    font-weight: 900;
}

.badge-notif {
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: 10px;
    padding: 5px 10px;
    background: rgb(31, 145, 227);
    color: white;
}

.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #0000001a;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

@media only screen and (min-width: 450px) {
    body{
        background-size: cover;
    }
    .screen {
        width: 400px;
        height: 550px;
        overflow-x: hidden;
        overflow-y: hidden;
    }
}
@media only screen and (min-width: 762px) {
    .screen {
        width: 3000px;
        height: 850px;
        overflow-x: hidden;
        overflow-y: hidden;}

    .login {
        width: 700px;
    }

    .login__input {
        font-size: 25px;
    }

    .login__submit {
        font-size: 30px;
    }

    .login-logo {
        width: 250px;

    }
}

@media only screen and (min-width: 992px) {
    body{
        background-size: cover;
    }
    .screen {
        width: 800px;
        height: 900px;
        overflow-x: hidden;
        overflow-y: hidden;}

    .login {
        width: 700px;
    }

    .login__input {
        font-size: 25px;
    }

    .login__submit {
        font-size: 25px;
    }

    .login-logo {
        max-width: 300px;
    }
}

@media only screen and (min-width: 1200px) {
    .screen {
        width: 600px;
        height: 750px;
    }

    .login {
        width: 600px;
    }

    .login__input {
        font-size: 20px;
    }

    .login__submit {
        font-size: 25px;
    }

    .login-logo {
        max-width: 300px;
    }
}

