
.address-form {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
  margin-top: 15vh;
  margin-bottom: 10vh;
}

.address-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.address-form input,
.address-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.address-form input:focus,
.address-form textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 4px rgba(0,123,255,0.3);
}

.address-form button {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease;
}

.address-form button:hover {
  background-color: #0056b3;
}
