/*body {
    font-family: Arial;
    padding: 20px;
    max-width: 400px;
    margin: auto;
  }
  
  input, button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
  }*/
  
  /* RESET */
* {
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
}

/* PAGE */
body {
  background: #f1f3f4;
  margin: 0;
  padding: 20px;
}

/* FORM CARD */
.form-container {
  background: #ffffff;
  max-width: 480px;
  margin: auto;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* TITLE */
.form-container h2 {
  margin-top: 0;
  text-align: center;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 51000;
  color: #202124;
}

/* LABEL */
label {
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #5f6368;
}

/* INPUTS */
input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #dadce0;
  font-size: 14px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}

/* INPUT FOCUS */
input:focus,
textarea:focus,
select:focus {
  border: 2px solid #1a73e8;
  box-shadow: 0 0 0 2px rgba(26,115,232,0.15);
}

/* TEXTAREA */
textarea {
  resize: vertical;
  min-height: 80px;
}

/* FILE INPUT */
input[type="file"] {
  padding: 8px;
}

/* BUTTON */
button {
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  background: #1a73e8;
  color: #ffffff;
  border: none;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.contain {
  display: flex;
  align-items: center; /* aligns vertically */
}

.contain img {
  width: 120px;
  margin-right: 15px;
}
/* BUTTON HOVER */
button:hover {
  background: #1669c1;
  box-shadow: 0 2px 6px rgba(26,115,232,0.4);
}

/* MOBILE FRIENDLY */
@media (max-width: 480px) {
  body {
    padding: 12px;
  }

  .form-container {
    padding: 20px;
  }
}
.loader-overlay{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(255,255,255,0.7);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
  display:none;
}

.spinner{
  width:50px;
  height:50px;
  border:6px solid #ddd;
  border-top:6px solid #2c7be5;
  border-radius:50%;
  animation: spin 1s linear infinite;
}

@keyframes spin{
  0%{ transform:rotate(0deg); }
  100%{ transform:rotate(360deg); }
}
