
/* modals */
.hidden{
    display: none;
}

.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
  
    background-color: rgb(84, 84, 84);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
    z-index: 12;

  }
  
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 165%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 11;
}

.close-form {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    color: #ffffff;
}

.close-form:hover {
    color: #ff9706;
}
.form-group{
    padding: 10px 0;
}

.form-group label{
    font-size: 20px;
    padding: 5px 0;
}
.form-control {
    width: 100%;
    padding: 10px 0;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}
