*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* ====== Color Variables ====== */
:root{
    --primary-color: #807f7f;
    --secondary-color: #000;
    --black-color: #fff;
}
body{
    background-image: url('emoj.jpg');
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    background-attachment: fixed;
}
/* ====== Reusable CSS ====== */
a{
    text-decoration: none;
    color: var(--secondary-color);
}
a:hover{
    text-decoration: underline;
}
/* ====== Further CSS Styling ====== */
.wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(0,0,0,0.2);
}
.login_box{
    position: relative;
    width: 450px;
    backdrop-filter: blur(25px);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    margin: 20px 0;
    padding: 7.5em 2.5em 4em 2.5em;
    color: var(--secondary-color);
    box-shadow: 0 0 10px 2px rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
}
.login_header{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e8c115;
    width: 200px;
    height: 70px;
    border-radius: 0 0 20px 20px;
}
.login_header span{
    font-size: 30px;
    font-weight: 500;
    
}
.login_header::before{
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 30px;
    background: transparent;
    box-shadow: 15px 0 0 0 #e8c115;
    border-top-right-radius: 50%;
}
.login_header::after{
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
    height: 30px;
    background: transparent;
    box-shadow: -15px 0 0 0 #e8c115;
    border-top-left-radius: 50%;
}
.input-box{
    position: relative;
    margin: 20px 0;
}
.input-field{
    width: 100%;
    height: 55px;
    font-size: 16px;
    color: var(--secondary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 0 45px 0 25px;
    border-radius: 30px;
    outline: none;
}
.label{
    position: absolute;
    top: 15px;
    left: 26px;
    pointer-events: none;
    transition: .5s;
}
.input-field:focus ~ label,
.input-field:valid ~ label{
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 14px;
    background-color: var(--primary-color);
    color: var(--black-color);
    padding: 0 10px;
    border-radius: 30px;
}
.fas{
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 20px;
}
.remember-forgot{
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.inputsubmit{
    width: 100%;
    height: 50px;
    background-color: #e8c115;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.inputsubmit:hover{
    background-color: var(--primary-color);
}
.register{
    font-size: 14px;
    text-align: center;
}

