body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f6fa;
    margin: 0;
    padding: 20px;
}

.container {
  max-width: 750px;
  margin: auto;
  background: rgb(255, 255, 255);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #2f3640;
}

form .row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  justify-content: center;
}

.row .field {
  flex: 1;
  min-width: 45%;
  margin: 10px 10px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

input, select {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

select {
    width: 96%;
}

input[type="file"] {
    padding: 6px 0;
}

#preview {
    display: none;
    margin-top: 10px;
    max-width: 120px;
    max-height: 120px;
    border-radius: 8px;
    border: 1px solid #ccc;
    object-fit: cover;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

button {
    display: block;
    width: 96.5%;
    padding: 12px;
    background: #0984e3;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 50px;
}

button:hover {
    background: #74b9ff;
}
@media screen and (max-width: 480px){
  .container h2{
    font-size: 2rem;
  }
  .container h2 img{
    width:80%;
    height:20%;
  }
}