﻿
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255); /* Semi-transparent background */
    z-index: 1000; /* Ensure it's on top of other elements */
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-icon {
    color: white;
    font-size: 48px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.description {
    margin-top: 8%;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.brand-logoA img {
    width: 150px;
}

.iti__search-input {
    padding: 10px;
}

.overlayA {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    display: none;
    opacity: 1;
    z-index: 1;
    overflow: auto;
}



.popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 60%;
    position: relative;
    transition: all 5s ease-in-out;
}

    .popup h2 {
        margin-top: 0;
        color: #333;
        font-family: Tahoma, Arial, sans-serif;
    }

    .popup .close {
        position: absolute;
        top: 10px;
        right: 30px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: white;
        opacity: 1;
    }

        .popup .close:hover {
            color: #06D85F;
        }

/*   .popup .content {
                        height:25%;
                        max-height: 560px;
                        overflow: auto;
                    } */


.eula-container {
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

    .eula-container h1 {
        font-size: 24px;
        text-align: center;
        color: #007bff;
    }

    .eula-container p, .eula-container li {
        margin: 10px 0;
    }

    .eula-container ul {
        padding-left: 20px;
    }

.agree-container {
    margin: 10px 0;
}

.btn-create-user {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.6; /* Disabled look */
}

    .btn-create-user:disabled {
        cursor: not-allowed;
    }

    .width-100 {
        width: 100%;
        display: none;
    }
    
    .form-group.mb-3 {
        width: 100%; /* Or a percentage of the parent container */
      }
      
      .iti {
        width: 100%; /* Or a percentage of the parent form group */
      }