@charset "utf-8";
/* CSS Document */

* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: #f8f8f8;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
  }
  
  .form-container {
    max-width: 250px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 5px;
    padding: 40px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
  
  .form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .form-container form p {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  label {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: bold;
	color: green
  }
  
   
  select {
    background-color: #f2f2f2;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    width: 100%;
  }
  
.green-button {
  background-color: #6fcd73;
}

.red-button {
  background-color: #6fcd73;
}

.blue-button {
  background-color: #6fcd73;
}

input[type="submit"],
input[type="button"] {
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}
  
  input[type="submit"]:hover,
  input[type="button"]:hover {
    background-color: #4dabe9;
  }
  
  .next {
    margin-left: auto;
  }
  
  .previous {
    margin-right: auto;
  }


body {font-family: Arial, Helvetica, sans-serif;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.2); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 4px solid #4dabe9;
  width: 25%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #c53e3e;
  text-decoration: none;
  cursor: pointer;
}

