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

body {
    height: 100vh;
    background: linear-gradient(to right, #FF7F50 0%, #00FFFF 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);

}
textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #a1c9d7;
    border-radius: 8px;
    resize: none;
    box-shadow: 2px 2px 4px rgb(0, 0, 0, 0.2);
    margin-bottom: 15px;
    outline: none;
}
select{
    width: 100%;
    padding: 10px;
    border-radius: 8px;
     border: 1px solid #a1c9d7;
    border: none;
    box-shadow:  2px 2px 4px rgb(0, 0, 0, 0.2);
    margin-bottom: 15px;
    outline: none;
}
h1{
    font-size: 30px;
    margin-bottom: 20px;

}

.btn-grad {
  background-image: linear-gradient(to right, #77A1D3 0%, #79CBCA 51%, #77A1D3 100%);
}

.btn-grad {
  margin: 10px auto;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
  outline: none;
  border: none;
  cursor: pointer;
  box-shadow:  2px 2px 4px rgb(0, 0, 0, 0.2);
}

.btn-grad:hover {
    
  background-position: right center;
  color: #fff;
  text-decoration: none;
}
.btn-grad:active {
    transform: scale(0.95);
}
.btn-grad span {
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin-left: 12px; /* Adds space between icon and text */
    text-transform: uppercase;
}