body {
  background-color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;

  padding: 1rem;
  color: #333;
  font-family: 'Jost', sans-serif;
}

.conteiner {
  background-color: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
  padding: 2rem;

}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #555;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #222;
}
form > div {
  margin-bottom: 1.25rem;

}

button {
  width: 100%;
  background-color: #0095DA;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #00244E;
}

input {
    width: 100%;
    height: 38px;
    border-radius: 16px;
    border:2px solid #00244E ;
    text-indent: 20px;
    font-size: 14pt;
    font-family: 'Jost', sans-serif;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input:focus {
  border-color: #0095DA;
}

p {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
}
p > a {
  color: #0095DA;
  text-decoration: none;
  font-weight: 600;
}

p a:hover {
  text-decoration: underline;
  color: #00244E;
}
#agreeCheckbox {
  width: 100%;
  height: 100%;
}
.labelcheck{
  width: 100vw;
  cursor: pointer;
  color: #0095DA;
  text-decoration: underline;
  font-size: 14px;
  margin: 0;
}
.labelcheck:hover{
    color: #0077b6;
}
.labelcheck p{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#submitBtn {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

#submitBtn:enabled {
  background: #0095DA;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
}

 { display: none; }

.modaltext {
  width: 90%;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 28px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
  scrollbar-width: none;
}

.modal-contenttext {
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.modaltext button {
  margin-top: 15px;
  padding: 8px 16px;
  background: #0095DA;
  color: white;
  border: none;
  border-radius: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
.modal-contenttext {
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}
/*  body {*/
/*    max-width: 100vw;*/
/*    width: 100%;*/
/*  }*/
/*  .conteiner {*/
/*    background-color: #fff;*/
/*    border-radius: 28px;*/
/*    box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
/*    width: 100%;*/
/*    padding: 2rem;*/

/*  }*/
}