/* Basic Reset */
/* * {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
} */

body {
  margin: 0;
  padding: 0;
}

/* Trigger Button */
.open-button {
  padding: 12px 24px;
  background-color: #e62222;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Modal Base */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
}

.modal-content {
  background: white;
  padding: 2vw 2.5vw;
  border-radius: 16px;
  width: 95%;
   width: 95%;
  /* max-width: 1200px; */
  max-height: 95vh;
  /* max-width: 1920px; */
  
  /* height:50vw; */
  
  /* max-width: 1800px; */
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: -1vw;
  right: -2vw;
  background-color: transparent !important;
  border:none;
  /* font-size: 24px;
  cursor: pointer;
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2); */
}
.close-btn svg{
  width:3.5vw;
  height:3.5vw;
  fill: currentColor; /* Ensures the fill responds to color changes */
  transition: fill 0.3s ease;
}
.close-btn:hover svg {
  fill: red;
}
/* Title */
.modal-content h2 {
  margin-top: 0;
  font-size: 4rem;
  font-weight: 550;
}
#applicationForm{
  padding-top: 2vw;
}
/* Form */
.form-row {
  display: flex;
  gap: 1vw;
  margin-bottom: 1vw;
}

.form-row input {
  flex: 1;
  padding: 14px 18px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

/* Upload Box */
.upload-box {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 4rem;
  text-align: center;
  color: #333;
  cursor: pointer;
}

.upload-box img {
  width: 40vw;
  opacity: 0.6;
  margin-bottom: 12px;
}

.upload-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.upload-box span {
  font-size: 14px;
  color: #777;
}

/* Submit Button */
.submit-btn {
  /* padding-top: 10vw; */
  display: block;
  position: relative;
  left:20vw;
  width: 50%;
  background-color: #e62222;
  color: white;
  padding: 1.25vw;
  border: none;
  border-radius: 8px;
  font-size: 2.0rem;
  font-weight: 400;
  margin-top: 1vw;
  cursor: pointer;
  transition: background 0.2s ease;
}

.submit-btn:hover {
  background-color: #cc1d1d;
}
@media (max-width: 768px) {
.form-row input {
  flex: 1;
  flex-direction: column;
  padding: 2.97vw 3.25vw;          /* 14px → 0.97vw, 18px → 1.25vw */
  font-size: 2.5vw;               /* 16px → 1.11vw */
  border: 0.07vw solid #ccc;       /* 1px → 0.07vw */
  border-radius: 0.69vw;           /* 10px → 0.69vw */
}
.form-row {
  display: flex;
 flex-direction:column;
  gap: 1vw;
  margin-bottom: 1vw;
}
.upload-box img {
  width: 10vw;
  opacity: 0.6;
  margin-bottom: 12px;
}
.upload-box {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  color: #333;
  cursor: pointer;
}
.upload-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
}
.upload-box span {
  font-size: 8px;
  color: #777;
}
.close-btn svg{
  width:5.5vw;
  height:5.5vw;
  fill: currentColor; /* Ensures the fill responds to color changes */
  transition: fill 0.3s ease;
}
.upload-box svg{
  width:10vw;
  height:10vw;
}
}