.prompt {
	max-width: 400px;
	margin: 50px auto;
	padding: 25px;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
}
/*
Loggin button 
*/
button{
    display: block;
	padding: 10px;
	width: 100%;
	border-radius: 3px;
	background: #7b1418;
	font-size: 14px;
	font-weight: 700;
	color: white;
	cursor: pointer;
}
a.button {
	box-sizing: border-box;
	display: block;
	padding: 10px;
	width: 100%;
	border-radius: 3px;
	background: #000;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: white;
}
a.google {
	background: #4787ed;
}
button:hover {
	background-color: #e28063;
}
a.button {
	box-sizing: border-box;
	display: block;
	padding: 10px;
	width: 100%;
	border-radius: 3px;
	background: #000;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: white;
}
a.google {
	background: #4787ed;
}

h1 {
	margin: 0 0 20px 0;
	padding: 0 0 5px 0;
	font-size: 24px;
	font-weight: 500;
}

h3 {
	margin-top: 0;
	font-size: 24px;
	font-weight: 300;
	text-align: center;
	color: #b83f45;
}



form section {
	margin: 0 0 20px 0;
	position: relative; /* for password toggle positioning */
}

.inputBox {
    position: relative;
    display: inline-block;
	width: 100%;
    margin-bottom: 20px; /* Adjust as needed */
  }
  
  .inputBox input {
    padding: 15px 20px;
    outline: none;
    background: transparent;
    border-radius: 5px;
    color: #000; /* Set text color to black */
    border: 1px solid #000000;
    font-size: 1em;
    transition: all 0.4s cubic-bezier(0.05, 0.81, 0, 0.93);
    box-sizing: border-box; /* Ensure padding is included in the width */
  }
  
  .inputBox label {
    position: absolute;
    top: 50%;
    left: 20px; /* Adjust as needed */
    transform: translateY(-50%);
    font-size: 1em;
    color: #000; /* Set label text color to black */
    pointer-events: none; /* Ensure label doesn't interfere with input */
    transition: all 0.4s cubic-bezier(0.05, 0.81, 0, 0.93);
  }
  
  .inputBox.has-value label {
    top: 0;
    transform: translateY(-50%);
    font-size: 1em;
    color: #000000;
    left: 60%;
    background: white; /* Set background color for better visibility */
    padding: 0 5px; /* Adjust padding for better appearance */
  }


label {
	display: block;
	margin: 0 0 3px 0;
	font-size: 14px;
	font-weight: 500;
}

input {
	box-sizing: border-box;
	width: 100%;
	padding: 10px;
	font-size: 14px;
	border: 1px solid #d9d9d9;
	border-radius: 5px;
}

input[type=name]:not(:focus):invalid,
input[type=password]:not(:focus):invalid {
	color: red;
	outline-color: red;
}

hr {
	border-top: 1px solid #d9d9d9;
	border-bottom: none;
}

p.instructions {
	font-weight: 400;
}

p.help {
	text-align: center;
	font-weight: 400;
}

/* background image by Cole Bemis <https://feathericons.com> */
.messages {
	position: absolute;
	width: 100%;
    font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	top: 22%;
	left: 38%;
	margin-left: -20px; /* margin is -0.5 * dimension */
	margin-top: 480px;
	color: #d83f45;
	/* padding-left: 22px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d83f45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-alert-circle'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center left; */
}
