﻿body {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    background-position: center;
    color: white;
    background-image: url('../images/2.jpg');
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: rgba(0,0,0,0.83);
}


.center-div {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
}




.prepend-input-icon {
    background: #232323c4;
    border-radius: 0px;
    border: 1px solid #d8d8d8;
}

.custom-input {
    background-color: #201f1f;
    border: 1px solid #d8d8d8;
    color: white !important;
    border-radius: 0px;
}

.custom-input::placeholder {
    color: #d8d8d8 !important;
    opacity: 1 !important; /* Firefox */
}

.custom-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
     color: #d8d8d8 !important;
}

.custom-input::-ms-input-placeholder { /* Microsoft Edge */
     color: #d8d8d8 !important;
}

    .custom-input:focus {
        color: var(--primary-color);
        background-color: #201f1f;
        border-color: white;
        outline: 0;
        box-shadow: none;
    }

input:focus, button:focus, .btn:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid white !important;
}
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
}
/*extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}



input[type='radio']:after {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    top: -4px;
    left: 0px;
    position: relative;
    background-color: #201e1c;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1px solid white;
}

input[type='radio']:checked:after {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    top: -4px;
    left: 0px;
    position: relative;
    background-color: var(--primary-color);
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1px solid white;
}