* {
    margin: 0;
    padding: 0;
    font-family: Assistant,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    box-sizing: border-box;
}
html{
    height: 100%;
}
body {
    height: 100%;
    background-color: #FDEEEC;
}

/* =============== header ====================  */
header {
    height: 80px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 1px solid #b6b1b1;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    
}

.myntra_home {
    /* height: 100%; */
    height: 45px;
}
.logo_container {
    margin-left: 4%;
}
.action_bar {
    margin-right: 4%;
}


.nav_bar {
    display: flex;
    /* min-width: 500px; */
    /* justify-content: space-evenly; */
    gap: 20px;
}
.nav_bar a {
    font-size: 14px;
    letter-spacing: .3px;
    color: #282c3f;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 28px 0;
    border-bottom: 5px solid #ffffff;
}
.nav_bar a:hover { 
    border-bottom: 4px solid #f54e77;
}

.nav_bar a sup {
    color: #ff3f6c;
    font-size: 10px;
}

.search_bar {
    height: 40px;
    min-width: 200px;
    width: 30%;
    display: flex;
    align-items: center;
    border: 2px solid red;
}
.search_icon {
    box-sizing: content-box;
    height: 20px;
    padding: 10px;

    background-color: #f5f5f6;
    color: #282c3f;
    font-weight: 300;
    border-radius: 4px 0 0 4px;
}
.search_input {
    border: none;
    color: #696e79;
    background-color: #f5f5f6;
    flex-grow: 1;
    /* width: 100%; */
    height: 40px;
    border-radius: 0 4px 4px 0;
}

.search_input:focus{
    border-color: transparent;
    outline: none;

    border: 2px solid rgb(103, 103, 243);
    border-radius: 4px;
}

.action_bar {
    display: flex;
    min-width: 200px;
    justify-content: space-evenly;
}

.action_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* ---------- Account ---------------- */

.account_profile_container{
   /* border: 2px solid green; */
   position: relative;
}
 .account_profile_container:hover .pop_action_container{  /*📗🔖 parent hover then child show this child.*/
     display: block;
}

.pop_action_container{
   display: none;
   background-color: white;
   /* border: 2px solid gray; */
   box-shadow: 0px 0px 5px rgb(205, 205, 205);
   border-radius: 5px;
   padding: 5px;
   width: 200px;
   position: absolute;
   
}

.pop_action_container p{
    margin-bottom: 10px;
    font-weight: 500;
    padding: 10px;
    border: 1px solid rgb(247, 247, 247);
}
.pop_action_container a {
    text-decoration: none !important;
    color: black !important;
}
.pop_action_container p:hover{
    background-color: #FDEEEC;
    border-radius: 10px;
}
/* ---------- Account end ---------------- */
/* ---------- Cart ---------------- */
.shopingCart{
    text-decoration: none;
    color: black;
    position: relative;
    /* border: 2px solid red; */

}
/* 📗🔖 how to create sup like text or no. */
.bag-item-count{
    background-color: #f16565;
    padding-left: 5px; /*📗🔖MY MISTAKE-1 and LEARNING-1  not give padding: 5px; to center the text in only left- right not give bottom and top*/ 
    padding-right: 5px;
    /* padding: 5px; */
    border-radius: 50%; 
    
    position: absolute;
    right: -9px; /*📗🔖 MY MISTAKE-2 and LEARNING-2  not give right 0px and it overflow the parent but see what we want to set give in minus menas overflow the parent conatiner*/ 
    top: 0px;
    
    font-size: 12px;
    color: #fff;
    font-weight: 700;
}

/* ---------- Cart end ---------------- */

/* =============== header end ====================  */

main{
  /* border: 2px solid red;  */
  height: 100%;
  padding-top: 80px;
    
}
.login-conatiner{
    height: 100%;
    
    /* its child will be affects by these👇  */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* border: 2px solid blue; */
}
.login-form{
    /* border: 2px solid red; */
    background-color: white;
    width: 400px;
    /* height: 500px; */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px 0px rgb(226, 226, 226);
}
.login-headline{
    margin-bottom: 20px;
}
.inputEle{
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 17px;
}
.term-condition{
    margin-bottom: 20px;
    color: #808498;
}
.txt-hightlight{
    color: #E93D67;
    cursor: pointer;
}
.login-btn{
  background-color: #E93D67;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  border: none  ;
  width: 100%;
  cursor: pointer;
}
.txt-css{
    margin-block: 10px;
    
}


/* =================================================================== 
                                Media Query  
 =================================================================== */

 @media screen and (max-width:425px){
   header {
    height: 60px;
   }
    .nav_bar{
        display: none;
        /* background-color: green ; */
    }
    .search_bar{
        display: none;
    }
    .action_bar{
        display: none;
    }

    main{
        height: auto;
        width: 100%;
        padding-top: 60px;
        
        /* border: 2px solid red;  */
    }
    .login-conatiner{
        height: auto;
        width: 100%;
        padding: 15px;
        
        /* its child will be affects by these👇  */
        display: flex;
        justify-content: center;
        align-items: center;
        
        /* border: 2px solid blue; */
    }
    .login-form{
        height: 100%;
        width: 100%;
        background-color: white;
        /* width: 400px; */
        /* height: 500px; */
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0px 0px 5px 0px rgb(226, 226, 226);
    
        /* border: 2px solid green; */
    }
    
    
 }


