
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

body {
    background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSkGStE7Rew82wntFAdnKA5IWmW21zVk55U1w&s);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    text-decoration: underline;
}

.main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
}

.main > h1, .main > h3{
    color: white;
}

.box {
    position: relative;
    width: 450px;
    backdrop-filter: blur(25px);
    border: 2px solid #c6c3c3;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 0 50px 50px 50px;
    color: #fff;
}

.heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.heading span {
    font-size: 30px;
    color: black;
    border-radius: 0 0 20px 20px;
    height: 70px;
    width: 140px;
    background-color: #c6c3c3;
    display: flex;
    align-items: center;
    justify-content: center;
}

form{
    margin-top: 80px;
}

.input-box {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.input-field {
    width: 100%;
    height: 55px;
    font-size: 16px;
    background: transparent;
    color: #fff;
    padding-inline: 20px 50px;
    border: 2px solid #c6c3c3;
    border-radius: 30px;
    outline: none;
}

#user {
    margin-bottom: 10px;
}

.label {
    position: absolute;
    top: -28px;
    left: 20px;
    transition: 0.2s;
}


.icon {
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 20px;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.input-submit {
    width: 100%;
    height: 50px;
    background: #c6c3c3;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.input-submit:hover {
    background: #fff;
}

.register {
    text-align: center;
}

.register a {
    font-weight: 500;
}