*{
    margin: 0 auto;
    box-sizing: border-box;
}
 body {
  font-family: 'Sarabun', serif;
  font-size: 16px;
	background-color:#f2f1f3;
	  }
.flex-container{
    display: flex;
    margin: 0 auto;
    padding: 20px;
    height: 100vh;
    background-color: #f2f3ef;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}
.boxc{
	margin: 0 auto;
	position:relative;
  	max-width:800px;
	box-sizing:border-box;
	padding:20px;
	backdrop-filter:blur(10px);
	-webkit-backdrop-filter:blur(10px);
	background-color:#fff;
	border-radius:15px;
	line-height:30px;
	box-shadow: 1px 1px 5px grey;
}
.boxc h1{
margin-top:20px;
text-align:center;
font-size:35px;
}
.img{
display:block;
text-align:center;
border-radius:50%;

}
.absolute01 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size:40px;
  top: 10px;
  right: 10px;;
  width: 70px;
  height: 70px;
  border:100% solid #73AD21;
  background-color:#FFC300;
  border-radius:100%;
  text-align:center;
  border-style: solid;
  border-color: #fff;
  color:#fff;
transition: all 0.3s ease-out;

}
.absolute01:hover{
  background-color:#FFf;

  color:#C70039;
  border-style: solid;
  border-color: #C70039;

}
.btn{
font-family: 'Sarabun', serif;
margin:10px;
color:#FFf;
font-size:20px;
height: 60px;
width:100%;
background-image: linear-gradient(to right, #8b36f8,red);
transition: all 0.3s ease-out;
border-radius:35px;
color:#FFf;
}
.btn:hover{
background-image: linear-gradient(to left, #8b36f8,red);
color:#FFf;
cursor:pointer;
}
input,select{
	box-sizing: border-box;
        font-family: 'Sarabun', serif;
	font-size: 25px;
	padding:5px;
  	color: #000000;
  	width:100%;
	height:50px;
  	background: #fff; text-align:center; font-size:18;  border:0;
	border-bottom: 1px solid gray;

}
/* For older WebKit browsers (e.g., Safari, Chrome) */
input::-webkit-input-placeholder {
 font-size:14px;
}


/* For older browser compatibility, especially Firefox, consider adding opacity: 1 */
input::-moz-placeholder {
  font-size:14px;
  opacity: 1; /* Ensures full opacity in Firefox */
}



/* For Internet Explorer 10 and 11 */
input:-ms-input-placeholder {
    font-size:14px;
}
input:focus{
	border:0;
	outline:none;
	border-bottom: 2px solid #f83683;
}
.message {
	margin-top: 20px;
	padding: 12px;
	border-radius: 8px;
 }

.error {
	background: #ffe0e0;
	color: #cc0000;
        }
.input-wrapper {
display: flex;
    margin-top: 30px;;
      position: relative;
      width: 100%;
    }