@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swamp');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000;
}

.wraper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 500px;
    background: transparent;
    border: 5px solid #333; 
    border-radius: 10px;
    transition: .5s;
}

.wraper:hover {
    border: 5px solid #0ef;
    box-shadow: 0 0 20px #0ef, inset 0 0 20px #0ef;
}

h2 {
    font-size: 2em;
    text-align: center;
    color: #fff;
    transition: .5s;
}

.wraper:hover h2 {
    color: #0ef;
}

.input-box{
    position: relative;
    width: 320px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 50%;
    background: transparent;
    border: 2px solid #333;
    outline: none;
    border-radius: 5px;
    font-size: 1em;
    color: #fff;
    padding: 0 10px 0 35px;
    transition: .5s;
}

.wraper:hover .input-box input {
    border: 2px solid #0ef;
    box-shadow: 0 0 10px #0ef, inset 0 0 10px #0ef;
}

.input-box input::placeholder{
    color: rgba(255, 255, 255, .3);
}

.input-box .icon {
    position: absolute;
    left: 10px;
    color: #fff;
    font-size: 1.2em;
    line-height: 55px;
    transition: .5s;
}

.wraper:hover .input-box .icon {
    color: #0ef;
}

.forgot-pass {
    margin: -15px 0 15px;
}

.forgot-pass a {
    color: #fff;
    font-size: .9em;
    text-decoration: none;
}

.forgot-pass a:hover {
    text-decoration: underline;
}

button {
    position: relative;
    width: 100%;
    height: 45px;
    background: #333;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: lem;
    color: #fff;
    font-weight: 500;
    transition: .5s;
}

.wraper:hover button {
    background: #0ef;
    color: #000;
    box-shadow: 0 0 20px #0ef;
}

.register-link {
    font-size: .9em;
    text-align: center;
    margin: 25px 0;
}

.register-link p {
    color: #fff;
}

.register-link p a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: .5s;
}

.wraper:hover .register-link p a {
    color: #0ef;
}
.register-link p a:hover {
    text-decoration: underline;
}