
.lala{
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #f0f2f5;
  padding: var(--spacing-unit);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin-top: 129px;
}

* {
  box-sizing: border-box;
}


.resume-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 500px;
  animation: fadeIn 0.7s ease;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #6F2031;
}

.input-group {
  position: relative;
  margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: none;
  outline: none;
  transition: 0.3s ease;
}

.input-group label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 0 5px;
  color: #999;
  pointer-events: none;
  transition: 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #007bff;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 12px;
  color: #6F2031;
}

textarea {
  resize: vertical;
  min-height: 60px;
  max-height: 200px;
}

button {
  width: 100%;
  padding: 14px;
  border: none;
  background-color: #6F2031;
  color: white;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #6F2033;

  transform: scale(1.03);
}

@media (max-width: 500px) {
  .resume-form {
    padding: 50px;
  }
  
.lala{
 
  margin-top: 20px;
  /* margin-bottom: 10px; */
}
  

}
