.modal-login {
    display: none;
    /* Başlangıçta görünmez */
    position: fixed;
    /* Sayfanın üzerinde kalacak şekilde konumlandırma */
    z-index: 10000000;
    /* Diğer içeriklerin üstünde olacak şekilde */
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    /* Siyah arka plan, opaklık ayarlı */

}

/* Modal içerik stil ayarları */
.modal-content-login {
    background-color: #fff;
    margin: 7% auto;
    padding: 7rem 4rem;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: 'Poppins', sans-serif;
    user-select: none;
}

.modal_licence {
    max-width: 1200px;
    padding: 4rem !important;
}

.modal_price {
    max-width: 1200px;
    padding: 4rem !important;
}

.modal-content-login h2 {
    text-align: center;
    font-weight: 600;
}


.modal-content-login form button {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #FF4450;
    border: none;
    padding: 10px 25px !important;
    color: #fff;
    margin-top: 3rem;
}

.modal-content-login input {
    width: 100%;
    padding: 10px 18px;
}

/* Kapatma butonu stil ayarları */
.close {
    color: #aaa;
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}