@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-shadow: bordered-box;
    font-family: "Poppins", sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgb(14, 13, 13);
    
}
.wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 500px;
    background: transparent;
    border: 5px solid rgb(58, 56, 56);
    border-radius: 10px;
    transition: .5s;


}
.wrapper:hover{
    border: 5px solid rgb(240, 9, 9);
    box-shadow:0 0 20px rgb(255, 0, 0),inset 0 0 20px rgb(255, 0, 0);
}

.wrapper h1{
    font-size: 36px;
    text-align: center;
    text-shadow: -1px 6px 7px rgba(0, 0, 0, 0.52);
    color: white;
    transition: .5s;
}
.wrapper:hover h1{
    color: rgb(203, 14, 14);
   
    
}
.input-box {
    position: relative;
    width: 320px;
 /* Increase height for more space */
    margin: 30px 0; /* Adjusted margin for spacing */
}

.input-box input {
    width: 310px;
    height: 50px;
    background: transparent;
    border: 2px solid #333;
    outline: none;
    border-radius: 20px;
    font-size: 1em;
    color: aliceblue;
    padding: 0px 10px 0 0px;
}
.wrapper:hover .input-box input{
    border: 2px solid #0ef;
    box-shadow:0 0 20px rgb(255, 0, 0),inset 0 0 20px rgb(255, 0, 0);
    
}


.input-box input::placeholder{
    color: rgb(235, 241, 241);
    padding-left: 5%;
    
}
.input-box i{
    position: absolute;
    right: 10px;
    bottom: 20px;
    font-size: 1.2em;
    line-height: 20px;
    color: white;
}
.wrapper:hover i{
   color: red;
    
}
.rem-for{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}
.rem-for label{
    color: white;
}
.rem-for label input{
    accent-color: white;
    text-decoration: none;
}
.rem-for a{
    color: white;
    text-decoration: none;
}
.rem-for a:hover{
    text-decoration: underline;
}
.btn{
    width: 100%;
    height: 45px;
    background: rgb(65, 63, 63);
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0,0,.1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    color: white;
    transition: background-color 0.5s ;
    

}
.wrapper:hover .btn{
    background-color: rgb(156, 8, 8);
    border: 5px solid rgb(240, 9, 9);
    box-shadow:0 0 20px rgb(255, 0, 0),inset 0 0 20px rgb(255, 0, 0);
}

.btn:hover{
   
    transform: scale(1.06);
}
.reg{
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0px 15px;
    color: aliceblue;
}
.reg a{
    color: aliceblue;
}


 a:hover{
    
    background-color: rgb(17, 17, 17);
    border-radius: 100px;
}
