*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ebe3;
}

h3 {
    color: #bd8800;
    text-align: center;
}

.centered_text {
    text-align: center;
}

div#alert {
    color: red;
    padding: 10px;
    border: red solid 1px;
    margin-top: 15px;
}

.not_loading {
    background-color: #04AA6D; /* Green background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 12px 24px; /* Some padding */
    font-size: 16px; /* Set a font-size */
}

.wrapper{
  position: relative;
  max-width: 700px;
  width: 100%;
  background: #fff;
  padding: 34px;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.wrapper h2{
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: #333;
}
.wrapper h2::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 28px;
  border-radius: 12px;
  background: brown;
}
.wrapper form{
  margin-top: 30px;
}
.wrapper form .input-box{
  height: auto;
  margin: 18px 0;
}
.wrapper form .input-box label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}
form .input-box input{
  height: 52px;
  width: 100%;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-weight: 400;
  color: #333;
  border: 1.5px solid #C7BEBE;
  border-bottom-width: 2.5px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.input-box input:focus,
.input-box input:valid{
  border-color: brown;
}
form .policy {
  display: flex;
  align-items: center;
}
form .age {
  display: flex;
  align-items: center;
}
form h3{
  color: #707070;
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
}
.input-box.button input{
  color: #fff;
  letter-spacing: 1px;
  border: none;
  background: brown;
  cursor: pointer;
}
.input-box.button input:hover{
  background: #7a1f1f;
}
form .text h3{
 color: #333;
 width: 100%;
 text-align: center;
}
form .text h3 a{
  color: brown;
  text-decoration: none;
}
form .text h3 a:hover{
  text-decoration: underline;
  width: 50%;
}
.x_small {
    font-size: x-small;
    font-family: sans;
}
.policy {
    margin-top: .75em;
}
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  background: #fff;
  color: #333;
  border: 1.5px solid brown;
  border-bottom-width: 2.5px;
  border-radius: 6px;
  font-size: 17px;
  cursor: pointer;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.google-btn:hover {
  background: #fdf5f0;
}

/* Guest conversation preservation section */
.guest-conv-section {
  background: #fdf5f0;
  border: 1.5px solid #C7BEBE;
  border-left: 4px solid brown;
  border-radius: 6px;
  padding: 16px;
  margin: 18px 0;
}
.guest-conv-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #5C3317;
  margin-bottom: 8px;
}
.guest-conv-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}
.guest-conv-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.conv-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid #C7BEBE;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fff;
}
.conv-option:hover {
  border-color: brown;
  background: #fdf5f0;
}
.conv-option.active {
  border-color: brown;
  background: #fdf5f0;
}
.conv-option input[type="radio"] {
  margin-top: 3px;
  accent-color: brown;
  flex-shrink: 0;
}
.conv-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.conv-option-text strong {
  font-size: 14px;
  color: #333;
}
.conv-option-text small {
  font-size: 12px;
  color: #707070;
}
