.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.popup-content {
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-content.success {
    background-color: #4CAF50;
    color: white;
}

button {
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
}
.form{
    padding: 10px 0px;
}
@media(max-width:760px){
    .form{
        padding: 0 !important;
    }  
}
.form-control{
    margin-bottom: 10px;
    padding-bottom: 20px;
    position: relative;
}

.form-control label{
    color:#777;
    display: block;
    margin-bottom: 5px; 
    font-size: 14px;
}
 
.form-control input
{
    border: 2px solid #d9d9d9;
    border-radius: 4px;
    display: block;
    width: 100%;
    padding: 5px;
    font-size: 12px;   
}

.form-control input:focus{
    outline: 0;
    border-color: #777;

}

.form-control.success input {
    border-color: var(--succes-color);
}

.form-control.error input {
    border-color: var(--error-color);    
}

.form-control small{
    color: var(--error-color);
    position: absolute;
    bottom: 0;
    left: 0;
    visibility: hidden;
}

.form-control.error small{
    visibility: visible;
}
.form button {
    background-color: #3498db;
    border: 2px solid #3498db;
    border-radius: 4px;
    color: #fff;
    display: block;
    padding: 10px;
    font-size: 23px;
    margin-top: 20px;
    width: 100%;
    font-weight: 700;
}