
		* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 background-color : #000033; background-color: linear-gradient(90deg,rgba(0, 0, 51, 1) 10%, rgba(24, 25, 71, 1) 90%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}



.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input {
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.contact-form input:focus {
  outline: none;
  border-color: #000033;
  box-shadow: 0 0 0 3px rgba(0, 0, 51, 0.1);
}

.contact-form button {padding: 1rem 1.5rem;background: #000033;color: white;border: none;border-radius: 10px;cursor: pointer;transition: all 0.2s ease;}

.contact-form button:hover {background: #1e1b4b;transform: translateY(-1px);box-shadow: 0 10px 25px rgba(0, 0, 51, 0.3);}
.page-wrapper {background: white;padding: 3rem 3rem 3rem 3rem;border-radius: 16px;box-shadow: 0 25px 50px -12px rgba(0, 0, 51, 0.25);width: 40%;position: relative;}
.btn-circle-close {position: absolute;top: -0.75rem; right: -1rem; border: 2px solid #d1d5db;border-radius: 50%;cursor: pointer;display: flex;align-items: center;justify-content: center;transition: all 0.2s ease;box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);}

.btn-circle-close:hover {transform: scale(1.05);}
.btn-circle-close:active {transform: scale(0.95);}

.form-fieldset {border: none;padding: 0;margin: 0 0 1.5rem 0;position: relative;}
.form-fieldset legend {background: white;color: #374151;font-weight: 600;font-size: 0.95rem;padding: 0 1rem;margin: 0;position: relative;top: 0.5rem;z-index: 2;}

.form-fieldset::before {content: "";position: absolute;top: 1rem;left: 0;right: 0;height: 1px;background: #e5e7eb;z-index: 1;}
.main__innert {padding: 0; height: 120px;box-sizing: border-box;display: flex;align-items: top;}
		
@media screen and (max-width: 600px) {
.page-wrapper {background: white;padding: 3rem 2rem 1rem 2rem;border-radius: 16px;box-shadow: 0 25px 50px -12px rgba(0, 0, 51, 0.25);width: 92%;position: relative;}	
.main__innert {padding: 0; height: 55px;box-sizing: border-box;display: flex;align-items: top;}
}