*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}
.back-video{
    position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: -1;
}

.auth-box {
    background-color: #39394d8e;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -30px; /* Adjust the margin-top value to move it up */
    margin-left: 20px; /* Adjust the margin-left value to move it to the left */
}
.container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100vh; /* Adjust as needed */
    padding: 20px;
}


.image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100vh; /* Adjust as needed */
    padding: 20px;
    flex: 1;
    padding: 20px;
    background-size: cover;
    background-position: center;
}
.auth-slider {
    cursor: pointer;
    margin-top: 20px;
    color: #00aeff;
    text-align: center;
}


.signup-form {
    margin-bottom: 15px;
    width: 100%;
    color: white;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: center;
 
}

input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color:   #f2f2f2;
}

.signup-form button{
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    background-color: #428eff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    text-align: center;
}
.signup-form {
    text-align: center; /* Center-align the content */
}

.signup-form button:hover{
    background-color: #007BFF;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(66, 142, 255, 0.2);
        }
        
/* logstyles.css */
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slide-down {
    from { max-height: 0; opacity: 0; }
    to { max-height: 1000px; opacity: 1; }
}

.form-group label {
    text-align: center;
}

.form-group button {
    display: block;
    margin: 0 auto;
    width: 100%;
    transition: opacity 0.3s ease-in-out;
}

.login-form, .signup-form {
    opacity: 1;
    max-height: 1000px;
    overflow: hidden;
    transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
}


/* Update styles for mobile responsiveness */
@media screen and (max-width: 786px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .auth-box {
        width: 80%; /* Adjust width as needed */
        margin: 10% auto;
        padding: 20px;
        overflow: hidden; /* Hide overflowing content */
    }

    .logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .logo img {
        max-width: 50%; /* Adjust logo size as needed */
        height: auto;
    }

    .form-container {
        text-align: center;
        margin-top: 20px;
       
    }

    .login-form,
    .signup-form {
        max-height: none;
        opacity: 1;
        overflow: visible;
        margin-top: 20px;
        overflow-y: auto; /* Enable vertical scrolling */
        max-height: calc(100vh - 350px); /* Adjust as needed */
    }

    .login-form button{
        width: 100%;
    }
    .signup-form button {
        width: 49%;
    }
}

/* Hide video controls */
.back-video::-webkit-media-controls {
    display: none !important;
}

.back-video::-webkit-media-controls-play-button,
.back-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.back-video::-webkit-media-controls,
.back-video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}


.container1 .row {
    display: flex;
    align-items: flex-end; /* Align items at the end */
    justify-content: center; /* Center content horizontally */
    height: 100vh; /* Adjust as needed */
    padding: 20px;
}




:root {
    --primary: #111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {    
    font-family: sans-serif;
    background-color: var(--secondary);
}
.select-box {
    position: relative;

    width: 26rem;
    margin: 7rem auto;
}

.select-box input {
    width: 100%;
    padding: 1rem .6rem;
    font-size: 1.1rem;
    
    border: .1rem solid transparent;
    outline: none;
}

input[type="tel"] {
    border-radius: 0 .5rem .5rem 0;
}

.select-box input:focus {
    border: .1rem solid var(--primary);
}

.selected-option {
    background-color: #eee;
    border-radius: .5rem;
    overflow: hidden;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-option div{
    position: relative;

    width: 6rem;
    padding: 0 2.8rem 0 .5rem;
    text-align: center;
    cursor: pointer;
}

.selected-option div::after{
    position: absolute;
    content: "";
    right: .8rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    
    width: .8rem;
    height: .8rem;
    border-right: .12rem solid var(--primary);
    border-bottom: .12rem solid var(--primary);

    transition: .2s;
}

.selected-option div.active::after{
    transform: translateY(-50%) rotate(225deg);
}

.select-box .options {
    position: absolute;
    top: 4rem;
    
    width: 100%;
    background-color: #fff;
    border-radius: .5rem;

    display: none;
}

.select-box .options.active {
    display: block;
}

.select-box .options::before {
    position: absolute;
    content: "";
    left: 1rem;
    top: -1.2rem;

    width: 0;
    height: 0;
    border: .6rem solid transparent;
    border-bottom-color: var(--primary);
}

input.search-box {
    background-color: var(--primary);
    color: #fff;
    border-radius: .5rem .5rem 0 0;
    padding: 1.4rem 1rem;
}

.select-box ol {
    list-style: none;
    max-height: 23rem;
    overflow: overlay;
}

.select-box ol::-webkit-scrollbar {
    width: 0.6rem;
}

.select-box ol::-webkit-scrollbar-thumb {
    width: 0.4rem;
    height: 3rem;
    background-color: #ccc;
    border-radius: .4rem;
}

.select-box ol li {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.select-box ol li.hide {
    display: none;
}

.select-box ol li:not(:last-child) {
    border-bottom: .1rem solid #eee;
}

.select-box ol li:hover {
    background-color: lightcyan;
}

.select-box ol li .country-name {
    margin-left: .4rem;
}
/* Your existing CSS */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}

/* ... (Rest of your existing styles) */

/* Styles for the phone number input box */
.select-box {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.select-box input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f2f2f2;
}

.select-box .selected-option {
    background-color: #eee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select-box .selected-option div {
    position: relative;
    width: 80px;
    padding: 0 10px 0 5px;
    text-align: center;
    cursor: pointer;
}

.select-box .selected-option div::after {
    position: absolute;
    content: "";
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    transition: 0.2s;
}

.select-box .selected-option div.active::after {
    transform: translateY(-50%) rotate(225deg);
}

.select-box .options {
    position: absolute;
    top: 35px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    display: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.select-box .options.active {
    display: block;
}

/* Apply blue border when any box element is focused */
input:focus, select:focus, textarea:focus {
    outline-color: #4a90e2; /* Change the border color to blue when focused */
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #4a90e2;
    color: white;
    padding: 10px 20px 10px 20px; /* Added padding for the icon */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    z-index: 2;
}

.back-button i {
    margin-right: 10px; /* Space between icon and text */
}

.back-button:hover {
    background-color: #357abf;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 786px) {

    .back-video{
        display: none;
       }
     body{
        background-color: whitesmoke;
       }
  }
  