@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    background-image: url(assets/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    color: white;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 2px 10px 20px rgba(0,0,0,0.1);
}

.login {
    font-size: 20px;
    text-align: center;
}

.information .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    font-size: 16px;
    padding: 20px 45px 20px 20px;
    color: white;
}

.input-box input::placeholder {
    color: white;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 30%;
    transform: translate(-50%);
}

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

.remember-forgot input {
    margin-right: 5px;
    cursor: pointer;
    vertical-align: middle;
}

.remember-forgot a {
    color: white;
    cursor: pointer;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    height: 40px;
    background-color: white;
    outline: none;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    color: purple;
    font-weight: 600;
}

.btn:hover {
    background-color: purple;
    color: white;
    transition: 0.3s;
}

.register {
    font-size: 16px;
    text-align: center;
    margin: 20px 0 15px;
}

.register p a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.register p a:hover {
    text-decoration: underline;
}