* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    background: url('/Assets/Body-BG.png') no-repeat center center fixed;
    background-size: cover;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.white-box {
    display: flex;
    flex-direction: row;
    background-color: white;
    max-width: 1000px;
    width: 90%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
  
.left-section {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-bar {
    position: absolute;
    right: 0;
    height: 100%;
    width: 10px;
}

.laptop-img {
    max-width: 100%;
    height: auto;
}

.right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: url(/Assets/BG.jpg);
    background-size: cover;
    padding: 20px;
    width: 100%;
}

h1 {
    color: #000000;
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
    font-style: italic;
}

p span{
    color: #AE132A;
    font-weight: bold;
}

select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

.continue-btn {
    background-color: #AE132A;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.continue-btn:hover {
    background-color: #d47e00;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.continue-btn:active {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.language-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-toggle {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem .8rem;
    border: 1.5px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-radius: .5rem;
    background: #f2f2f2;
    cursor: pointer;
    min-width: 240px;
    font-size: 16px;
}

.dropdown-toggle .selected-icon {
    width: 20px; height: 20px; object-fit: cover; border-radius: 2px;
}

.dropdown-toggle .downicon {
    margin-left: auto;
    width: 4%;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    margin-top: .4rem;
    padding: .25rem 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: .5rem;
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    min-width: 100%;
    max-height: 260px;
    overflow: auto;
    display: none;
}


.dropdown-menu.show {
    display: block;
  }

.dropdown-menu.open {
    display: block; 
}

.dropdown-menu li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .2rem;
    padding: .5rem .75rem;
    cursor: pointer;
}

.dropdown-menu li img {
    width: 18px; height: 18px; object-fit: cover; border-radius: 2px;
}

.dropdown-menu li:hover, .dropdown-menu li:focus {
    background: #f3f4f6;
    outline: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .75rem;
    text-decoration: none;
    color: inherit;
}

.dropdown-menu li a:hover, .dropdown-menu li a:focus {
    background: #f3f4f6;
    outline: none;
}

.toggle-text{
    padding-right: 53.5%;
    color: #afaeae;
}

.toggle-text span {
    color: black;
}

@media (max-width: 768px) {
    .white-box {
      flex-direction: column;
    }

    .left-section {
        flex-direction: column;
    }

    .color-bar {
        bottom: 0;
        width: 10px;
        height: 86.15%;
        transform-origin: bottom;
        transform: rotate(-90deg);
        right: -5px;
    }

    .right-section {
        align-items: flex-start;
        text-align: left;
    }

    .dotted-bg {
        padding: 10px;
    }
}

