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

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

.bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("./assets/bg.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
}

body {
    height: 100vh;
    font-family: sans-serif;
    background-color: #5534a5;
}

.wrapper {
    width: 350px;
    height: auto;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 15px;
    margin: 10px 0;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(12px);
    border-radius: 20px;
}

.wrapper h1 {
    font-size: 25px;
    color: #1c1c1c;
    text-align: center;
}

.wrapper .input-box {
    display: flex;
    width: 100%;
    padding: 10px 12px;
    position: relative;
}

.wrapper .input-box input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 20px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 1px solid #1c1c1c;
}

input::placeholder {
    color: #1c1c1c;
}

.wrapper .input-box .bx {
    position: absolute;
    right: 20px;
    top: 20px;


}

.wrapper .remeber {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.wrapper .remeber a {
    text-decoration: none;
}

.wrapper .remeber:hover a {
    text-decoration: underline;
}

.btn {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    outline: none;
    border: none;
    outline: none;
    font-weight: 500;
    box-shadow: 0px 0px 5px black;
    margin-bottom: 10px;

}

input[value="Login"] {
    font-weight: 500;
}

.wrapper .register {
    display: inline-flex;
    justify-content: space-around;
    margin-left: 45px;
}

.register p,
a {
    text-decoration: none;
    color: #1c1c1c;
    font-size: 16px;
    word-spacing: 1px;

}

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