/*---------------- Login CSS ------------------*/
.pop-login-container{
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    max-width: 430px;
    width: 100%;
    display: none;
}

.pop-login-container .pop-box{
	position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: .3rem;
    outline: 0;
}    

.pop-login-container .pop-box .pop-header {
	display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
    border: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #4c4c4c;
}

.pop-login-container .pop-box .tabs-btn{
	display: flex;
    align-items: center;
    justify-content: start;
}

.pop-login-container .pop-box .tabs-btn button{
	outline: none;
    padding: 15px 30px;
    color: #fff;
    font-family: "Roboto",sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    transition: all 0.5s ease;
}

.pop-login-container .pop-box .tabs-btn button.active{
	color: #272727;
	background-color: #fff;
}

.pop-login-container .pop-box .close-btn{
	display: inline-block;
}

.pop-login-container .pop-box .close-btn button{
	padding: 15px 20px;
    color: #fff;
    opacity: 1;
    text-shadow: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: "Roboto",sans-serif;
}
    
.pop-login-container .form-box {
   padding: 30px;
   position: relative;
   font-family: "Roboto",sans-serif;
   color: #272727;
   font-weight: 400;
   font-size: 15px;
   line-height: 25px;
}    

.pop-login-container .form-box .form-group-box{
	padding-left: 42px;
    border: none;
    font-family: "Roboto",sans-serif;
    font-size: 15px;
    color: #272727;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    border: 1px solid #dce0e0;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.pop-login-container .form-box .form-group-box input,
.pop-login-container .form-box .form-group-box select{
	border: none;
	outline: none;
	width: 100%;
	height: 100%;
}


.pop-login-container .form-box .form-group-box input:placeholder,
.pop-login-container .form-box .form-group-box select:placeholder{
 	color: #a1a7a8
}



    
/* Additional CSS to match the image design */
.pop-login-container .form-box {
    background: #fff;
    display: none;
}

.pop-login-container .form-box.active {
    display: block;
}

.pop-login-container .form-box .form-group-box {
    position: relative;
    padding-left: 42px;
    height: 42px;
    border: 1px solid #dce0e0;
    border-radius: 4px;
}

.pop-login-container .form-box .form-group-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.pop-login-container .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pop-login-container .checkbox-group {
    display: flex;
    align-items: center;
}

.pop-login-container .checkbox-group input {
    margin-right: 5px;
}

.pop-login-container .forgot-password {
    color: #272727;
    text-decoration: none;
    font-size: 14px;
}

.pop-login-container .terms {
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.pop-login-container .terms input {
    margin-right: 5px;
}

.pop-login-container .btn-box {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #4c4c4c;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.pop-login-container .btn-box:hover {
    background: #464646;
}

/* Tab switching functionality */
.pop-login-container .tabs-btn button {
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Close button styling */
.pop-login-container .close-btn button {
    background: transparent;
    border: none;
    color: white;
}

/* Form group focus state */
.pop-login-container .form-group-box:focus-within {
    border-color: #4c4c4c;
}
    /*---------------- Login CSS ------------------*/