/* Styles here apply to the change pass page */
.page-main-area{
    padding-bottom: 9rem;
}
#change-pass-cont{
    position: relative;
    max-width: 100%;
    margin-top: 2rem;
    padding-bottom: 5rem;
}
#change-pass-heading{
    position: relative;
    color: var(--primary-color);
    font-weight: bold;
    text-align: center;
    font-size: 1.7rem;
    font-family: 600;
    margin: 2rem;
    margin-bottom: 1rem;
}
#changePassWrapper{
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    padding: 1rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 7px 5px rgba(0,0,0,0.1);
}
#changePassForm{
    position:relative;
    width: 100%;
    font-size: 14px;
    background-color: var(--primary-color-light);
    padding: 1.5rem;
}


#changePassAlert{
    position: relative;
    width: 100%;
   
}
.field--box{
    position: relative;
    width: 100%;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}
.field--box>label{
    color: var(--pure-white);
    display: inline-block;
    text-transform:capitalize
}

.text-field--case{
    position: relative;
    width: 75%;
}

.field--control{
    display: inline-block;
    width: 100%;
    color: #666;
    padding: 1rem;
    outline: none;
    border: none;
    border: 2px solid #ccc;
    box-sizing: border-box;
    padding-left: 50px;
    transition: border 0.4s ease-in;
    border-radius: 25px;
}

.field--control:focus{
    border: 2px solid var(--secondary-color);
}
.text-field--case>.changePass-form-icon{
    position: absolute;
    top: 13px;
    left: 25px;
    color: var(--primary-color);
    font-size: 1.3rem;
}
#userEmail{
   padding-left: 55px;
}

.text-field--case>.changePass-form-icon2{
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-left: 1rem;
    cursor: pointer;
}


#passChangeBtn{
    color: #f8f8f8;
    background-image: linear-gradient(to bottom, var(--secondary-color) 5%, var(--primary-color) 70%);
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    padding: 0.5rem;
    padding-left: 0;
    transition: all 0.5s ease-in;
    cursor: pointer;
}
#passChangeBtn:hover{
    opacity: 0.75;
}

/* Optimization for tablet and mobile devices starts here */
@media (max-width:770px){
    #change-pass-cont{
        padding-bottom: 7rem;
    }
}

@media (max-width:700px){
    .field--box{
     flex-wrap: wrap;
    }
    .text-field--case{
        position: relative;
        width: 100%;
    }
    
    
}

@media (max-width:470px){
    #changePassWrapper{
        margin-bottom: 9rem;
     }
     #change-pass-cont{
        padding-bottom: 4rem;
    }
    
}

@media (max-width:300px){
    .field--control{
        padding-left: 35px;
    }
    
    .text-field--case>.changePass-form-icon{
        left: 15px;
    }

    #userEmail{
       padding-left: 35px;
    }
    
    .text-field--case>.changePass-form-icon2{
        right: 15px;
        display: none;
    }

    #passChangeBtn{
       font-size: 0.7rem;
    }

     #change-pass-cont{
        padding-bottom: 2rem;
    }
    
    
}