
body{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: roboto ;
    background-color: #fffbef;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 0.8rem;
    border-bottom: 1px solid rgb(174, 172, 172);
}
.header button{
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #7d344e;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin:0  10px;
}
.header button:hover{
    background-color: #582135;
}
.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    /* margin-top: 20px; */
}
.content h1{
    font-size: 1.7rem;
    color: #333;
}
.content h3{
    font-size: 0.9rem;
    color: #848383;
    margin-top: -20px;
    font-weight: 400;
}

.content form{
    width: 100%;
    max-width: 40vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
   
}
.content .input-feilds{
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 0.5em;
    /* background: #e8e8e8;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff; */
    
 
}
.content .name{
    display: flex;
    gap: 5px;
}
.content form label{
    font-size: 0.8rem;
 
    color: #6c6b6b;
}
.content form input{
    width: 27vw;
    padding: 10px;
    border: 2px solid #cbc9c9;
    border-radius: 5px;
    background-color: #eaf4f2;
}
.content form select{
    width: 27vw;
    padding: 10px;
    border: 2px solid #cbc9c9;
    border-radius: 5px;
    background: #e8e8e8;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}
.content .name input{
    width: 12.35vw;
}
.content form button{
    /* width: 29vw;
    height: 8vh;
    padding: 18px;
    border: none;
    border-radius: 5px; 
    background-color: #7d344e;
    color: white;
    font-weight: bold;
    cursor: pointer; */
    width: 29vw;
    height: 8vh;
    max-width: 600px;
    padding: 18px;
    background-color: #7d344e;
    color: aliceblue;
  font-size: 0.8rem;
  font-weight: 100;
}
 
.content form button:hover{
    background-color: #481627;
}

.check-feilds{ 
    width: 53vw;
    display: flex;
    justify-content: start;
    gap: 10px;
    text-align: justify;
    margin-left: 24vw;
  

}
.check-feilds input{
    width: 10px !important;
    height: 15px;
    display: block;
}
.check-feilds label{
    font-size: 1.1rem;
    color: #6c6b6b;
    width: 26vw;
  
}
.error-message{
    color: red;
    font-size: 1rem;
}

/* country button  */

.compare-user-filter {
    position: relative;
    width:100%; /* Adjust as needed */
}
.compare-user-dropdown {
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    background-color:#fffbef;
}
.compare-user-dropdown input {
    border: none;
    padding: 5px;
    flex: 1;
    outline: none;
   
}
.compare-user-dropdown i {
    padding: 5px;
}
.compare-user-popup-overlay {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 93%;
    background: rgba(0, 0, 0, 0.5); /* Background for the overlay */
    z-index: 1000; /* Ensure popup is on top */
    margin-left: 10px;
    border-radius: 5px;
}
.compare-user-popup {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 90%;
    position: relative;
}
.compare-user-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}
.compare-user-popup-search {
    width: 90% !important;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid rgb(138, 136, 136);
    border-radius: 5px;
    outline: none;
}
.compare-user-popup-items {
    max-height: 200px; /* Adjust as needed */
    overflow-y: auto;
    
}
.compare-user-popup-item {
    padding: 10px;
    cursor: pointer;
    font-size: 0.8rem;
    
    
}
.compare-user-popup-item:hover {
    background: #f0f0f0;
}
.compare-user-heading-filter{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}




@media screen and (max-width: 1200px){
    .content form input{
        width: 80vw;
    }
    .content form .name input{
        width: 37vw;
    }
    .content form select{
        width: 85vw;
    }
    
    .content form button{
        width: 85vw;
    }
    .check-feilds{
        width: 85vw;
        text-align: justify;
    }
}
@media screen and (max-width: 700px){
    .content form .name{
        flex-direction: column;
        gap: 10px;
    }
    .content form .name input{
        width: 80vw;
    }
}
.submit-button{
    margin-bottom: 2vh;
    border: 1px solid #7d344e;
    border-radius: 5px;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 0.8rem;
    /*border-bottom: 1px solid rgb(174, 172, 172);*/
}
.header button{
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #7d344e;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin:0  10px;
}
.header button:hover{
    background-color: #582135;
}
.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    /* margin-top: 20px; */
}
.content h1{
    font-size: 1.7rem;
    color: #333;
}
.content h3{
    font-size: 0.9rem;
    color: #848383;
    margin-top: -20px;
    font-weight: 400;
}

.content form{
    width: 100%;
    max-width: 40vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
   
}
.content .input-feilds{
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 0.5em;
    /* background: #e8e8e8;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff; */
    
 
}
.content .name{
    display: flex;
    gap: 5px;
}
.content form label{
    font-size: 0.8rem;
 
    color: #6c6b6b;
}
.content form input{
    width: 27vw;
    padding: 10px;
    border: 2px solid #cbc9c9;
    border-radius: 5px;
    background-color: #eaf4f2;
}
.content form select{
    width: 27vw;
    padding: 10px;
    border: 2px solid #cbc9c9;
    border-radius: 5px;
    background: #e8e8e8;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}
.content .name input{
    width: 12.35vw;
}
.content form button{
    /* width: 29vw;
    height: 8vh;
    padding: 18px;
    border: none;
    border-radius: 5px; 
    background-color: #7d344e;
    color: white;
    font-weight: bold;
    cursor: pointer; */
    width: 29vw;
    height: 8vh;
    max-width: 600px;
    padding: 18px;
    background-color: #7d344e;
    color: aliceblue;
  font-size: 0.8rem;
  font-weight: 100;
}
 
.content form button:hover{
    background-color: #481627;
}

.check-feilds{ 
    width: 53vw;
    display: flex;
    justify-content: start;
    gap: 10px;
    text-align: justify;
    margin-left: 24vw;
  

}
.check-feilds input{
    width: 10px !important;
    height: 15px;
    display: block;
}
.check-feilds label{
    font-size: 1.1rem;
    color: #6c6b6b;
    width: 26vw;
  
}


/* country button  */

.compare-user-filter {
    position: relative;
    width:100%; /* Adjust as needed */
}
.compare-user-dropdown {
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    background-color:#fffbef;
}
.compare-user-dropdown input {
    border: none;
    padding: 5px;
    flex: 1;
    outline: none;
   
}
.compare-user-dropdown i {
    padding: 5px;
}
.compare-user-popup-overlay {
    display: none;
    position: absolute;
    top: 10%;
    left: 0;
    width: 93%;
    background: rgba(0, 0, 0, 0.5); /* Background for the overlay */
    z-index: 1000; /* Ensure popup is on top */
    margin-left: 10px;
    border-radius: 5px;
}
.compare-user-popup {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 90%;
    position: relative;
}
.compare-user-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}
.compare-user-popup-search {
    width: 90% !important;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid rgb(138, 136, 136);
    border-radius: 5px;
    outline: none;
}
.compare-user-popup-items {
    max-height: 200px; /* Adjust as needed */
    overflow-y: auto;
}
.compare-user-popup-item {
    padding: 10px;
    cursor: pointer;
}
.compare-user-popup-item:hover {
    background: #f0f0f0;
}
.compare-user-heading-filter{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


@media screen and (max-width: 1200px){
    .content form input{
        width: 50vw;
    }
    .content form .name input{
        width: 23.5vw;
    }
    .content form select{
        width: 53vw;
    }
    
    .content form button{
        width: 53vw;
    }
    .check-feilds{
        width: 53vw;
        text-align: justify;
        margin-left: 0;
    }
    .check-feilds label{
        width: 49vw;
        font-size: 0.6rem;
    }
   
}
@media screen and (max-width: 700px){
    .content form .name input{
        width: 50vw;
    }
}
@media screen and (max-width: 550px){
    .content form .name{
        flex-direction: column;
        gap: 10px;
    }
    .content form .name input{
        width: 70vw;
    }
    .content form input{
        width: 70vw;
    }
    .content form select{
        width: 70vw;
    }
    .content form button{
        width: 70vw;
    }
    .check-feilds{
        width: 70vw;
        text-align: justify;
        margin-left: 0;
    }
    .content label{
        font-size: 0.6rem !important;
    }
    .check-feilds label{
        width: 70vw;
        font-size: 0.5rem !important;
    }
    
    h1{
        font-size: 1.5rem !important;
    }
    h3{
        font-size: 0.7rem !important;
    }
}

@media screen and (max-width: 550px) {
    #other-login {
      display: none;
    }
    
    #new-login {
      display: block;
    }
    .header button{
        padding:5px;
        font-size:0.5rem;
    }
  }
  
  @media screen and (min-width: 551px) {
    #other-login {
      display: block;
    }
    
    #new-login {
      display: none;
    }

    


}
/*icon header*/

#login22Dropdown {
    position: relative;
    display: inline-block;
}
.login22-dropdown-options{
    gap: 10vw;
    background-color: none;
}


#toggleDropdownBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding:5px;
    font-size: 0.6rem;
    cursor: pointer;
    background-color: #672a3e;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: Roboto;
    margin-left: 39vw;
}

#toggleDropdownBtn a {

    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
}

#toggleDropdownBtn:hover {
    background-color: #4e1729;
}

#login22DropdownMenu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%); /* Center the dropdown horizontally */
    background-color: #eaf4f2;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1000;
    min-width: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 7vh;
    margin-left: 19vw;
    margin-top: 5px;
    padding: 10px 10px;
    
    
    
    
}

#login22DropdownMenu.show {
    display: block; /* Show the dropdown when 'show' class is applied */
}

#login22DropdownMenu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #ddd;
    font-size: 0.6rem;
    font-family: Roboto, Arial, sans-serif;
}

#login22DropdownMenu a:last-child {
    border-bottom: none;
}

#login22DropdownMenu a:hover {
    background-color: #f1f1f1;
    color: #000;
}

#login22DropdownMenu a:focus {
    background-color: #ddd;
    outline: none;
}
#loginBtn1{
 margin-top: 6px;
 background-color: none;
 margin-left: 15px;
 min-width:35px;
 
}
#login22DropdownMenu{
    background-color: none;
}