*{
    margin: 0;
    padding: 0;
    box-sizing : border-box;
    color: rgb(0, 10, 105);
    font-family: 'Roboto', sans-serif;
}
body{
    background-image:  url(./images/cybersecurity-1024x70.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.box{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.empty-box{
    width: 40%;
    text-align: center;
    box-shadow: rgba(152, 202, 249, 0.2) 0px 54px 55px, rgba(0, 0, 0, 0.2) 0px -12px 30px, rgba(0, 0, 0, 0.2) 0px 4px 6px, rgba(0, 0, 0, 0.2) 0px 12px 13px, rgba(0, 0, 0, 0.2) 0px -3px 5px;
    background-color: rgba(255, 255, 255, 0.6);
}
.displayer{
    display: flex;
    justify-content: space-between;
    margin: 1em;
}
.inner-box{
    display: flex;
    flex-direction: column;
    padding: 0.1em;
    box-shadow: rgba(152, 202, 249, 0.2) 0px 54px 55px, rgba(0, 0, 0, 0.2) 0px -12px 30px, rgba(0, 0, 0, 0.2) 0px 4px 6px, rgba(0, 0, 0, 0.2) 0px 12px 13px, rgba(0, 0, 0, 0.2) 0px -3px 5px;
    background-color: rgba(152, 202, 249, 0.4);
    text-align: center;
}
h1{
    text-align: center;
    padding:1em;
    text-shadow: 0 0 10px #ffffff, 0 0 10px #ffffff;
}
#disp{
    overflow: hidden;
    width: 90%;
    padding: 1rem;
    font-size: 2rem;
    background-color: rgb(0, 0, 0);
    color: #00ff51;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
}
#len{
    padding: 1em;
    border: 1px solid rgb(152, 202, 249);
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
}
#alrtlen{
    color: #ff0000;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #ffffff, 0 0 10px #ffffff;
}
.check_form{
    display: flex;
    flex-direction: column;
    padding: 1rem;
}
.inner-row{
    width: 100%;
    display:flex;
    padding-bottom: 1em;
    justify-content: space-between;
    align-items:center;
    font-size: 1.5em;
    text-shadow: 0 0 5px #ffffff, 0 0 5px #ffffff;
}

.chckbox {
    height:1.5rem;
    width: 1.5rem;
    cursor: pointer;
    appearance:none;
    border:1px solid rgb(152, 202, 249);
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
}

input[type='checkbox']:checked:before{
    content:'\2713'; 
    background:rgb(46, 151, 249); 
    width:100%; height:100%; 
    top:0;
    left:0;
    display:flex; 
    align-items:center; 
    justify-content:center; 
    color:white; 
    font-weight:bold; 
}

input[type="text"],input[type="number"], textarea {
    border: none;
    outline: none;
    
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {  

   opacity: 1;

}
.passbutt {
  align-items: center;
  appearance: none;
  background-color: #ffffff;
  border-radius: 24px;
  border-style: none;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
  color: #3c4043;
  cursor: pointer;
  display: inline-flex;
  font-size: 2em;
  font-weight: bold;
  height: 48px;
  justify-content: center;
  text-align: center;
}

.passbutt:focus {
    border: 2px solid #4285f4;
}
.passbutt:hover {
    color: rgb(0, 10, 105);
}

.copyclip {
    width:10%;
    align-items: center;
    appearance: none;
    border-style: none;
    background: none;
    cursor: pointer;
    display: inline-flex;
    font-size: 2em;
    justify-content: center;
    text-align: center;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
  }
.copyclip:focus {
    outline:none;
    border: 2px solid #4285f4;
}

@media (max-width:800px){ 
    .box{
        flex-wrap: wrap;
    }
    .empty-box{
        width: auto;
        flex-wrap: wrap;
    }
    .inner-box{
        width: auto;
        flex-wrap: wrap;
    }
}
  

     
  
  
  