* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #e0f7fa, #80deea);
}

.home-container {
  background:white;
  width: 460px;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.home-container h1 {
  margin-bottom: 10px;
  color: #2c5aa0;
}

.tagline {
  margin-bottom: 25px;
  color: #555;
  font-size: 16px;
}

.home-container input {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 25px;
}

.button-group {
  display: flex;; 
  gap: 15px;
  justify-content: space-between;
}

.home-container input {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 25px;
}

.button-group {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-direction: column;
  align-items: center;
}

button {
  flex: 1;
  padding: 12px; 
  font-size: 15px; 
  border: none;
  border-radius: 6px; 
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
}

.lost-btn {
  background-color: #e53935;
}

.found-btn {
  background-color: #2e7d32;
}
* {
  font-family: "Segoe UI", Arial, sans-serif;
} 

.form-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
}


.form-card {
  background: #ffffff;
  width: 520px;
  padding: 40px 45px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.form-card h2 {
  text-align: center;
  color: #3b67b0;
  margin-bottom: 30px;
  position: relative;
}

.form-card h2::after {
  content: "";
  display: block;
  width: 160px;
  height: 3px;
  background: #e53935;
  margin: 8px auto 0;
  border-radius: 2px;
}

label {
  display: block;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

input {
  width: 100%;
  padding: 13px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #d1d9e6;
  font-size: 14px;
}

input:focus {
  outline: none;
  border-color: #e53935;
}

button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  background: #e53935;
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(229, 57, 53, 0.4);
}
body {
  padding: 20px;
  margin: 0;
} 

h1 {
  text-align: center;
  margin-bottom: 30px;
  margin: 30px 0;
  color: rgb(48, 34, 34);
}

.main-section {
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;       
}

.found-section,
.lost-section {
  flex: 1; 
  color: #0c244a;             
  border: 1px solid black;
  padding: 30px;
  box-sizing: border-box;
}

.found-section h2,
.lost-section h2 {
  text-align: center;
}

.btn {
  background-color: olive;
}
.card{
  background-color: white;
  padding: 10px;
  border-radius: 8px;
  margin-bottom:5px;
}
.location-options {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
}

.radio-option input {
  margin: 0;
}
