Your IP : 216.73.216.201


Current Path : /home/hrpsychology/public_html/soulfood.gr/validation/
Upload File :
Current File : /home/hrpsychology/public_html/soulfood.gr/validation/style.css

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Montserrat", sans-serif;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/bg.jpg);
	background-size: cover;
	background-position: center;
}

.box {
	border-radius: 20px;
	width: 300px;
	padding: 30px;
	/* border: 2px solid orangered; */
	background-color: rgba(0, 0, 0, 0.4);
	box-shadow: 1px 1px 2px #ffc400ef;
	display: flex;
	flex-direction: column;
}

.box h1 {
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	align-self: center;
}

.username,
.password {
	position: relative;
}

.fa-envelope,
.fa-lock-open {
	position: absolute;
	left: 25px;
	top: 40px;
	color: rgb(256, 256, 256);
}

.box input[type="text"],
.box input[type="password"] {
	font-size: 20px;
	background: none;
	display: block;
	margin: 20px auto;
	text-align: center;
	border: 3px solid #0367fd;
	padding: 14px 10px;
	width: 220px;
	outline: none;
	color: #fff;
	border-radius: 24px;
	transition: all .2s ease-in;
}

.box input[type="text"]:focus,
.box input[type="password"]:focus {
	width: 250px;
	border-color: #ffc400ec;
}

#btn {
	background: none;
	display: block;
	margin: 20px auto;
	text-align: center;
	border: 3px solid #ffc400ec;
	padding: 14px 35px;
	outline: none;
	font-size: 18px;
	color: rgb(256, 256, 256);
	border-radius: 20px;
	transition: all .2s ease-in-out;
	cursor: pointer;
}

#btn:hover {
	background-color: #ffc400ca;
}

.wrapper {
	display: flex;
	flex-direction: column;
	height: 100vh;
	align-items: center;
	justify-content: center;
}

.logo {
	height: 25vh;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #ffc400 inset !important;
}