* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(to bottom right, #fffaf5, #e1faee);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  display: flex;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  width: 900px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo span {
  font-size: 50px;
  color: #2e7d32;
  text-align: center;
}

.left {
  /* UPDATED: Used your new color gradient */
  background:  white;
  color: #2e7d32;
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.left h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.left p {
  font-size: 16px;
  color: black;
}

.right {
  flex: 1.5;
  padding: 40px;
  background: #fff;
}

.right h2 {
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  gap: 10px; 
}



input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* UPDATED: Focus ring now uses your green */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
select:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 5px rgba(46, 125, 50, 0.4); /* #2e7d32 in rgba */
}

 
.upload-box {
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-bottom: 15px;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

/* UPDATED: Hover border now uses your green */
.upload-box:hover {
  border-color: #2e7d32;
  background: #f1fff7;
}

.upload-box input[type="file"] {
  display: none; /* para mawala yung default ugly file input */
}

.upload-box label {
  /* UPDATED: Used your new color gradient */
   background:  #F57C00;
   margin-bottom: 10px;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.upload-box label:hover {
  opacity: 0.9;
}

.upload-note {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}


button {
  width: 100%;
  padding: 12px;
  /* UPDATED: Used your new color gradient */
   background:  #F57C00;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
button:hover {
  opacity: 0.9;
}

.terms {
  font-size: 13px;
  margin-bottom: 15px;
  vertical-align: middle;
}
.terms input {
  margin-right: 5px;
}
.terms a {
  /* UPDATED: Used your new orange */
  color: #F57C00;
  text-decoration: none;
}
.terms a:hover {
  text-decoration: underline;
}


.login-link {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.login-link a {
  /* UPDATED: Used your new orange */
  color: #F57C00;
  font-weight: 100;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}
 
.checkbox {
  /* UPDATED: Used your new orange */
  accent-color: #F57C00;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    width: 100%;
    margin: 20px;
  }
}
