:root {
				--grey: #F9F2ED;
				--orange: #FFB562;
}
* {
				margin: 0;
				padding: 0;
}
body {
				background-color: var(--grey);
}

.container {
				position: absolute;
				top: 25%;				
}

label {				
				font-size: 15px;
}
#style {
				margin: 10px 0;		
}

input {
				border: none;							
				width: 150px;
				height: 38px;			
				box-shadow: inset 0 -3px 0 0 var(--grey);					
}
input:focus {
  outline: none;
  box-shadow: inset 0 -3px 0 0 var(--orange);
}
::placeholder {
				opacity: 0.4;
}

thead {
				background-color: var(--orange);
}
