.form-field .form-label {
    text-align: left !important;
    width: 100%;
    font-weight: bold;
}

.form-field .text-field {
    padding: 0.5rem;
    background: #ffffff31;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.029);
    border-radius: 5px;
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.rbutton{
    padding: 2px 2rem;
    background-color: #ff0000;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.029);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.6s ease;
}

.rbutton:hover{
    background-color: #ff3333;
    transform: translateY(-5px);
    transition: all 0.6s ease;
}