:root {
            --gradient: linear-gradient(45deg , #f58634, #ff6b6b, #173783, #00c3ff);
}
.formulario
{
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 4%;
    padding-right: 6%;
    padding-bottom: 1%;
    margin-left: 250px;
    margin-right: 250px;
    margin-top: 150px;
    margin-bottom: 150px;
    
}

input[type=text],input[type=email],input[type=tel], textarea
{
    width: 100%;
    padding: 15px;
    border: 1px none #ccc;
    border-radius: 15px;
    margin: 10px;
    box-shadow: 2px 2px 5px 2px #ccc;
    font-family: "Aldrich", sans-serif;
}

h1
{
    font-family: "Aldrich", sans-serif;
    
}


button
{
    
    font-family: "Aldrich", sans-serif;
    background-color: transparent;
    color: #162a59;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    border: 0;
}

.button-bar {
    margin-top: 10px;
    display: flex;
    gap: 2.5rem;
}

.button-bar button::before
{
    font-family: "Aldrich", sans-serif;
    background-color: transparent;
    color: #f58634;
    text-decoration: none;
    font-weight: 500;
    padding: 0.2rem 0;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    border: 0px;
    border-radius: 5px;
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.button-bar button::after
{
    font-family: "Aldrich", sans-serif;
    background-color: rgba(255, 255, 255, 0.8);
    color: #f58634;
    text-decoration: none;
    font-weight: 500;
    padding: 0.2rem 0;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    border: 0px;
    border-radius: 5px;
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}

.button-bar button:hover
{
    font-family: "Aldrich", sans-serif;
    background-color: transparent;
    color: #f58634;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
   
}

.button-bar button:hover::before,
.button-bar button:hover::after {
  width: 100%;
  animation: gradient 8s linear infinite;
}



.button-bar button::after:disabled
{
    cursor: not-allowed;
    font-family: "Aldrich", sans-serif;
    background-color: rgba(94, 94, 94, 0.8);
    color: #f58634;
    text-decoration: none;
    font-weight: 500;
    padding: 0.2rem 0;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    border: 0px;
    border-radius: 5px;
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    background-size: 300%;
    transition: width 0.3s ease;
}




label
{
    font-family: "Aldrich", sans-serif;
}

p
{
    text-align: center;
}

 @keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 100% 0%; }
 }

 @media (max-width: 800px) {
    .formulario
{
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 4%;
    padding-right: 6%;
    padding-bottom: 1%;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 150px;
    margin-bottom: 150px;
    
}

input[type=text],input[type=email],input[type=tel], textarea
{
    width: 100%;
    padding: 15px;
    border: 1px none #ccc;
    border-radius: 15px;
    margin: 10px;
    box-shadow: 2px 2px 5px 2px #ccc;
    font-family: "Aldrich", sans-serif;
    padding-bottom: 50px;
}




button
{
    
    width: 100%;
    
}

 }