@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color:black;
      font-family: 'Poppins', sans-serif;
}

.container {
    width:350px ;
    height:450px ;
    background: rgb(15, 15, 15);
    color: #fff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 20px;
}

.headline {
    margin-bottom: .5em;
    font-size: 1rem;
}
.sub {
    margin-bottom: .5em;
    font-size: 0.75rem;
}

.box {
    margin: .2em 0;
}

.container .box p {
    color: rgba(255, 255, 255, 0.781);
}

.container .box div {
    width: 100%;
    height: 40px;
    position: relative;
    margin: 0.5em 0;

}

.container .box input {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(19, 19,19);
    border: none;
    outline: none;
    padding-left: .8em;
    color: #fff;
    border-radius: 10px;
    transition: all 0.4s;
}

.container .box input:focus::placeholder {
    color: #ffffff;
}

.container .box div::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 102%;
    height: 105%;
    border-radius: 10px;
    background: linear-gradient(to right , #037486 ,#2e9aab);
}

.loginBtn {
    width: 105%;
    height: 40px;
    border: none;
    margin: 0.5em 0;
    border-radius: 10px;
    transform: translate(-1%);
    background: linear-gradient(to right , #53959f ,#16616c);
    color: #fff;
    cursor: pointer;
    transition: all 0.4s;
}

.loginBtn:hover {
    box-shadow: 0 0 10px #468893;
    transform: translate(-1% , 5%);
}

.text {
    font-size: .8em;
    margin-top: 0.8em;
    text-align: center;
    color: rgba(255, 255, 255, 0.623);
}

.text a {
    color: rgba(255, 255, 255, 0.911);
    text-decoration: none;
    position: relative;
    left: 3px;
}