html {
    background-color: white;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh; 
  display: flex;
  justify-content: center; 
  align-items: center;     
  background:#d2c8d2d4;
  font-family: "Open Sans", "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #222;
}

main {
  background-color: white;
  display: flex;
  flex-direction: column;
  height: 80vh;
  width: 90vw;
  align-items: stretch;
  border-radius: 14px;
  text-align: center;
}

.content-wrapper {
  display: flex;
  flex: 1;
  justify-content: center;   
  align-items: stretch;      
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;               
}

.line-seperation {
    border: 0.15rem solid;
    display: flex;
    border-color: #702c63;
    background-color: #702c63;
    max-width: 2px;
    border-radius: 15px;
    margin: 30px 20px;
    align-self: stretch;
}

.left-pane,
.second-pane {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: center;
}

h1 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: #702c63;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  margin: 1.3rem auto;
  width: 90%;
}

#check_statement {
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
  margin: 15px;
  line-height: 1.3;
  margin-top: 1.5rem;
}

.form-label {
    box-sizing: border-box;
    width: 90%;         
    height: auto;         
    min-height: 50px;    
    padding: 10px 14px; 
    border: 1px solid #ccc;
    border-color: #aea2ac;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    color:#423f42;
    line-height: 1.5;
    font-size: 16px;
    line-height: 1.4;
    background-color: white;
    margin-top: 10px;
}

select.form-label {
  padding-right: 40px;
  cursor: pointer;
}

select.form-label,
select.form-label option {
  font-size: 16px;
}

form {
    padding-top: 10px;
}

button {
    box-sizing: border-box;
    width: 90%;              
    height: auto;         
    min-height: 50px;      
    padding: 0px 14px;
    border: 1px solid #ccc;
    border-color:#702c63;
    border-radius: 10px;
    font-size: 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
    color:white;
    line-height: 1.5;
    background-color: #702c63;
    margin-top: 30PX;
}

button:hover {
  background-color: #904281;
}

.ascn-logo {
  display: block;              
  width: 100%;
  max-width: 600px;           
  margin: 15px auto;           
  
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  border: none;
  color: black;
  font-size: 14px;
  width: 80%;
  max-width: 400px;
  min-width: 100px;
  margin: 10px auto;
  line-height: 1.4;
}

.consent-label input[type="checkbox"] {
  margin-top: 5px;
  accent-color: #702c63; 
}

#register-slide {
  width: 100%;
  height: 100%;
}


main { overflow: auto; }


#statusMsg, #statusMsg2 {
  color: red;
}
