body{
    background: url('/images/background.png') no-repeat center center fixed;
    background-size: cover;
}
.main_guest-container{
    height: 0;
    position: sticky;
    top: 20%;
    margin-top: 100px;
    margin-left: 685px;
}
.guest-container {
    background-color: rgba(255, 255, 255, 0.8); /* White with 80% opacity */
    border-radius: 17px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 750px;
    width: 550px;
    box-sizing: border-box;
}
 
.guest-header {
    background: rgba(71, 87, 104, 0.8); /* Dark background with 80% opacity */
    text-align: center;
    margin-bottom: 20px;
    padding: 40px;
    border-radius: 17px 17px 0 0;
}
 
.guest-header img {
    width: 100px;
}
.logo2 {
    border-radius: 6px;
    height: 75px;
}
.guest-form{
    display: flex;
    flex-direction: column;
    margin: 0 50px 0 50px;
 
}
.guest_input-group{
    margin-bottom: 35px;
    position: relative;
}
input[type="text"]::placeholder{
    font-size: 15px;
}
input[type="tel"]::placeholder{
    font-size: 15px;
}
input[type="email"]::placeholder{
    font-size: 15px;
}
input[type="password"]::placeholder{
    font-size: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;  
}
.guest_uploadImage{
    display: flex;
}
#guest_firstName, #guest_lastName, #guest_number, #guest_email, #guest_userName, #guest_password, #otp{
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
.toggle-password1 {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}
.guest_image{
    color: rgba(77, 77, 77, 0.829);
    margin-right: 15px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}
.guest-button {
    background:none;
    color: black;
    padding: 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    align-self: center;
}
.guestBtn{
    background-color: #e0dcdc;
    color: black;
    padding: 0;
    border: none; 
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    height: 35px;
    width: 120px;
    align-self: center;
}
.guestBtn1{
    background-color: #007bff;
    color: white;
    padding: 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    height: 35px;
    width: 120px;
    align-self: center;
}
#cameraSection{
    display: flex;
}
#capturedImage{
    margin-left: 20px;
}
 
 
 
#otpSuccessPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
 
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}
 
.popup-content button {
    margin-top: 10px;
}
 
 
.guest-input-container {
    position: relative;
}
 
.guest-input-container input {
    width: 100%;
    padding: 10px;
    padding-right: 40px; /* Add space for the button */
    box-sizing: border-box;
}
 
.guest-input-container button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 10px;
}
.goBack{
    padding: 0;
    cursor: pointer;
    font-size: 16px;
    align-self: center;
    margin-top: 5px;
}


@media screen and (max-width: 1540px){
    .main_guest-container{
        height: 0;
        position: sticky;
        top: 5%;
        margin-top: 40px;
        margin-left: 490px;
    }
    .guest-container {
        background-color: rgba(255, 255, 255, 0.8); /* White with 80% opacity */
        border-radius: 17px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        height: 610px;
        width: 530px;
        box-sizing: border-box;
    }
    .guest-header {
        background: rgba(71, 87, 104, 0.8); /* Dark background with 80% opacity */
        text-align: center;
        margin-bottom: 10px;
        padding: 20px 10px 10px 10px;
        border-radius: 17px 17px 0 0;
    }
    #guest_firstName, #guest_lastName, #guest_number, #guest_email, #guest_userName, #guest_password, #otp{
        width: 100%;
        padding: 8px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 4px;
        border-top: 0px;
        border-left: 0px;
        border-right: 0px;
        border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    }
    .guestBtn{
        background-color: #e0dcdc;
        color: black;
        padding: 0;
        border: none; 
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        height: 28px;
        width: 110px;
        align-self: center;
    }
    .guestBtn1{
        background-color: #007bff;
        color: white;
        padding: 0;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 15px;
        height: 30px;
        width: 110px;
        align-self: center;
    }
    .logo2 {
        border-radius: 6px;
        height: 75px;
    }
    .guest-header img {
        width: 100px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1340px){
    .main_guest-container{
        height: 0;
        position: sticky;
        top: 5%;
        margin-top: 10px;
        margin-left: 390px;
    }
    .guest-container {
        background-color: rgba(255, 255, 255, 0.8); /* White with 80% opacity */
        border-radius: 17px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        height: 610px;
        width: 530px;
        box-sizing: border-box;
    }
    .guest-header {
        background: rgba(71, 87, 104, 0.8); /* Dark background with 80% opacity */
        text-align: center;
        margin-bottom: 10px;
        padding: 20px 10px 10px 10px;
        border-radius: 17px 17px 0 0;
    }
    #guest_firstName, #guest_lastName, #guest_number, #guest_email, #guest_userName, #guest_password, #otp{
        width: 100%;
        padding: 2px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 4px;
        border-top: 0px;
        border-left: 0px;
        border-right: 0px;
        border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    }
    .guestBtn{
        background-color: #e0dcdc;
        color: black;
        padding: 0;
        border: none; 
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        height: 28px;
        width: 110px;
        align-self: center;
    }
    .guestBtn1{
        background-color: #007bff;
        color: white;
        padding: 0;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 15px;
        height: 30px;
        width: 110px;
        align-self: center;
    }
    .logo2 {
        border-radius: 6px;
        height: 60px;
    }
    .guest-header img {
        width: 80px;
    }
    
}
@media screen and (max-width: 480px){
    
    .logo2 {
        border-radius: 6px;
        height: 60px;
    }
    #guest_firstName, #guest_lastName, #guest_number, #guest_email, #guest_userName, #guest_password, #otp{
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 4px;
        border-top: 0px;
        border-left: 0px;
        border-right: 0px;
        border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    }
    .guest-container {
        background-color: rgba(255, 255, 255, 0.8); /* White with 80% opacity */
        border-radius: 17px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }
    .main_guest-container{
        height: 0;
        position: sticky;
        top: 20%;
        height: 950px;
        width: 450px;
        margin-top: 100px;
        margin-left: 685px;
    }
    .guestBtn1{
        background-color: #007bff;
        color: white;
        padding: 0;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 15px;
        height: 30px;
        width: 110px;
        align-self: center;
    }
}