*{
    margin:0;
    padding:0;
}

section{
    display:flex;
    justify-content:absolute;
    align-items: center;
    min-height:100vh;
    width:100%;
    background: url('bg1.jpg');
    background-repeat: no-repeat;
    background-size:cover;
}

.form_box{
    position:relative;
    width:350px;
    height:400px;
    background:transparent;
    border:1px solid rgba(14, 13, 13, 0.5);
    border-radius:15px;
    backdrop-filter:blur(15px);
    display:flex;
    justify-content:center;
    align-items:center;
    margin: 80px auto;
	padding: 30px 20px;
}

h2{
    font-size:2em;
    color:#0f0f0f;
    text-align:center;
}

.input_box{
    position:relative;
    margin:30px 5px;
    width:310px;
    border-bottom:1px solid #0f0e0e;
    padding: 2%;
}

.input_box label{
    position:absolute;
    top: 50%;
    left: 5px;
    transform: translatey(-50%);
    color: #0e0c0c;
    font-size:1em;
    pointer-events:none;
    transition:.5s;
    background:transparent;
}

input:focus ~ label
input:valid ~label{
    top:-5px;
}

.input_box input{
    width:100%;
    height:50px;
    background:transparent;
    border:none;
    outline:none;
    font-size:1em;
    padding:0 40px 0 0;
    color:#070707;
}

.button{
    width:100%;
    height:30px;
    border-radius:40px;
    background:#3f42f3;
    border:none;
    outline:none;
    cursor:pointer;
    font-size:1em;
    font-weight:600;
    padding: 0 10px;
}

.link{
    background: #18038d;
	color: white;
	font-size: 11pt;
	width: 100%;
	border: none;
	border-radius: 25px;
	padding: 10px 150px;
    text-decoration: none;
}

.tulisan_login{
    color:#080808;
}