:root{
  --main-accent: #8e5cc2;
  --highlight: #5e3a86;
  --light-green: #d2f0d2;
  --deep-green: #589167;

}

body {
  background: linear-gradient(to bottom right, #f3e6ff, #d6ccff);
  font-family: 'Baloo 2', cursive;
  color: var(--highlight);
  padding: 50px
}

.main {
  text-align: center;
  margin: 50px;
  padding: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border-color: white;
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);

  z-index: 10;
}

h1 {
  text-align: center;
  margin: 5px;
  font-size: 2.3em;
  font-weight: bold;
  color: var(--main-accent);
}

h3 {
  text-align: center;
  color: var(--highlight);
  margin: 5px;
  margin-bottom: 20px;
  font-size: 1.2em;
}

.form-in {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-color: #b3d8bd;
  border-radius: 10px;
  border-width: 2px;
  border-style: solid;
}

.input-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.input-box {
  flex: 1;
  background-color: #f3e6ff;        
  padding: 12px;
  border: 2px solid #8e5cc2;        
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.input-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  text-align: left;
  color: #5e3a86;                   
}

.input-box input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 2px inset #8e5cc2;
  outline: none;
  transition: border-color 0.2s ease;
}

.btn-primary {
  background-color: var(--main-accent);
  border-color: #794bab;
  box-shadow: 0 1px 6px rgba(19, 0, 32, 0.5);
}

.btn-primary:hover {
  background-color: #a678d8;    
  border-color: #a678d8;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:focus:active {
  background-color: var(--highlight);    
  border-color: var(--highlight);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
  transform: scale(0.98);     
}

.error-box {
  background-color: #ffe6e6;    
  color: #990000;     
  margin-top: 10px;
  padding: 15px;
  border-radius: 8px;
}

.info-box {
  background-color: var(--light-green);    
  color: var(--deep-green);               
  margin-top: 10px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.footer {
  margin-top: 20px;
}

a {
  color: var(--main-accent);                   
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: var(--deep-green);                
  text-decoration: underline;
}

.flower-image-container {
  margin-top: 20px;
  text-align: center;
}

.flower-image {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(88, 145, 103, 0.2);
}

#flower-splash-zone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-flower {
  position: absolute;
  width: 80px;
  opacity: 0.8;
  transform: scale(1.2);
  transition: opacity 1.2s ease, transform 1.2s ease;
}