/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  /* background: #6990F2; */
}

.wrapper{
  background-color: rgb(255, 255, 255);
  border: 3px solid rgb(85, 3, 3);
  border-radius: .5rem;
  padding: .5rem;
  max-width: 430px;
  margin: 0 auto;
  animation: fade 250ms ease-in-out forwards;
  align-items: center;
  box-shadow: 0 8px 10px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

/* .group1, .group2{
  margin-top: 0;
} */
form{
	/* background-color: #eee; */
	/* border-radius: 9px; */
	position: relative;
	z-index: 1;
	max-width: 545px;
	margin: 0 auto 30px;
	padding: 25px;
}
.alert{
	padding: 10px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #711227;
}
.alert a{
	text-decoration: none;
	/* color: blue; */
	font-size: 36px;
	outline: none;
	font-weight: bold;
}
.alert h2{  
  font-size: 28px;
  color: #000;
  text-align: center;  
}
.wrapper .form-group{
  position: relative;
  /* width: 100%; */
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
}
.wrapper .form-group .gr{
  position: relative;
  width: 100%;
  height: 40px;
  /* color: #711227;  */
  /* padding: 0 10px; */
  margin: 30px 0 20px;
  /* background: #E2CFD3; */
}
.wrapper .form-group .group1 input{
  /* position: absolute; */
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
  font-size: 15px;
  padding: 0 10px;
  z-index: 1;
  color: white;
}
.wrapper .form-group .group1 .text{
  position: absolute;
  top: 0;
  left: 0;
  line-height: 40px;
  font-size: 18px;
  padding: 0 10px;
  display: block;
  transition: 0.5s;
  pointer-events: none;
  /* border: 9px; */
}
.wrapper .form-group .group1 input:focus + .text,
.wrapper .form-group .group1 input:valid + .text{
  top: -35px;
  left: -10px;
  
}
.wrapper .form-group .group1 .line{
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #711227;
  transition: 0.5s;
  border-radius: 2px;
  pointer-events: none;
}
.wrapper .form-group .group1 input:valid ~ .line{
  height: 100%;
  z-index: -1;
}

/* ----------------- Textul cu protectia datelor ----------------------*/
h4{
  color: #711227;
  font-weight: bold;
  font-size: 25px;
  text-align: center;  
}

p{
  text-align: center;
  font-weight: center;
}
 a{
  text-decoration: none;
}

.datepersonale {
  background-color: rgb(255, 255, 255);
  border: 3px solid rgb(85, 3, 3);
  border-radius: .5rem;
  padding: .5rem;
  max-width: 300px;
  margin: 0 auto;
  animation: fade 250ms ease-in-out forwards;
  align-items: center;
  box-shadow: 0 8px 10px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
/* ----------------- END Textul cu protectia datelor ----------------------*/


span{
  color:black;
  font-size: 15px;
}

::-webkit-file-upload-button{
	color: #eee;
	background: #711227;
	padding: 20px;
	border: none;
	border-radius: 50px;
	box-shadow: 2px 2px 7px 1px #8D4152;
	outline: none;
}
::-webkit-file-upload-button:hover{
	background: #E2CFD3;
	color: rgb(0, 0, 0);
}
.btn{
	color: white;
	background: #711227;
	padding: 5px;
	margin-top: 20px;
	text-transform: uppercase;
	outline: 0;
	width: 100%;
  
	font-size: 15px;
	box-shadow: 0px 0px 7px 2px #E2CFD3;
	border-radius: 9px;
	cursor: pointer;
  border: none;
}
.btn:hover{
	background: #E2CFD3;
	color: #711227;
}

@media only screen and (min-width: 768px) {
	.container3{		
		width: 100%;
    font-size: 2.3rem;
}
}
