html{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #222d32;
    background-size: cover;
}


/* page register css*/
.form-box{
    max-width: 30%;
    display: flex;
    justify-content: center;
    margin: auto;
}
.txt span{
    color:#48e248;
    font-size: 15px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}
.txt span a{
   font-weight: 500;
   color: rgb(62, 62, 228);
   margin-left: 5px;
}
header{
    color: white;
    font-size: 50px;
    text-align: center;
    padding: 5px 0 10px 0;
    margin-bottom: 5px;
}
.form-name{
    display: flex;
    gap: 10px;
}
.input-field{
    font-size: 15px;
    background: rgba(255,255,255,0.2);
    color: black;
    height: 45px;   
    width: 100% ;
    padding: 0 10px 0 45px;
    margin: 5px;
    border: none;
    border-radius: 30px;
    outline: none;
}
.input-box i{
    position: relative;
    top: -36px;
    left: 25px;
    color:#48e248;
}
::-webkit-input-placeholder{
    color: rgb(172, 169, 169);
}
.check-box{
    font-size:15px;
    background: #1a2226;
    color:#fff;
    border: 2px solid #00ff00;
    padding: 12px;
    border-radius: 30px;
    margin-left: 7px;
    margin-right: -5px;
    color:rgb(133, 130, 130);
    margin-bottom: 20px;
}
.label{
    margin-left: 15px;
}
.label:hover{
    color: white;
}
label{
    margin-left: 10px;
    color:#48e248;
    margin-bottom: 5px;
}
.submit{
    font-size: 15px;
    font-weight: 500;
    color: #00ff00;
    height: 45px;
    width: 100%;
    border-radius: 30px;
    outline: none;
    background: #1a2226;
    border: 2px solid #00ff00;
    cursor: pointer;
    margin-left: 5px;
}
.submit:hover{
    background:rgba(255,255,255,0.2);
    box-shadow: 1px 5px 7px 1px rgba(0,0,0,0.25);
}

/*page login css*/
.form-box-login{
    max-width: 30%;
    margin: auto;
}
.txt-2 span{
    color:#48e248;
    font-size: 15px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    margin-top: 180px;
}
.txt-2 span a{
   font-weight: 500;
   color: rgb(62, 62, 228);
   margin-left: 5px;
}
header{
    color:#48e248;
    font-size: 50px;
    text-align: center;
    padding: 5px 0 10px 0;
    margin-bottom: 5px;
}
input[type="text"], input[type="password"], input[type="email"]{
    background: #1a2226;
    color:#fff;
    border: 2px solid #00ff00;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus{
    outline: none;
    border: 2px solid #002fff;
    background: #1a2226;
    color: #fff;
}