/*style.css*/
body {
    display: flex;
    align-items: center;
    justify-content: start;
    font-family: sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    background: #f3f3f3;
    flex-direction: column;
    margin: 0;
}

.main {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    transition: transform 0.2s;
    width: 500px;
    text-align: center;
}

h1 {
    color: #15a44a;
}

label {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: left;
    color: #555;
    font-weight: bold;
}

input {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: #15a44a;
    width: 100%;
    font-size: 16px;
}

button:disabled,
button[disabled]{
  border: none;
  background-color: #cccccc;
  color: #666666;
}

.wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Style all input fields */

/* Style the submit button */
input[type=submit] {
  background-color: #15a44a;
  color: white;
}

/* Style the container for inputs */
.container {
  background-color: #f1f1f1;
  padding: 10px;
}

/* The message box is shown when the user clicks on the password field */
#message {
  display:block;
  background: #f1f1f1;
  color: #000;
  position: relative;
  padding: 4px;
  margin: 0px;
	text-align: left;
}

#message p {
	
	margin: 0px;
  padding: 1px 1px;
  font-size: 18px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:after {
  position: relative;
  left: 25px;
  content: "✓";
}



/* Add a red text color and an "x" icon when the requirements are wrong */
.invalid {
  color: black;
}

.invalid:before {
  position: relative;
  left: -35px;
  content: "";
}