@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Dosis;
    color: white;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(./assets/fundo.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.wrapper {
    width: 30%;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 30px 40px;
}

.wrapper h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.wrapper .inputbox {
   width: 100%;
   height: 50px;
   position: relative;
}

.inputbox input{
    width: 100%;
    height: 30px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    font-size: 18px;
    padding-left: 10px;
    outline: none;
}

.inputbox input::placeholder /*Herdado*/{
    color: rgba(255, 255, 255, 0.5);
}

.inputbox i {
    position: absolute;
    right: 10px;
    top: 15%;
    transform: translateY(-50);
}

.wrapper .remember {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin: 10px 0 10px;
}

.remember label input{
    accent-color: rgba(255, 255, 255, 0.5);
}

.remember a {
    text-decoration: none;
}

.wrapper .btn {
    width: 100%;
    height: 40px;
    background-color: white;
    color: black;
    outline: none;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 3px black;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
}

.wrapper .register {
    font-size: 15px;
    text-align: center;
}

.register p a{
    font-weight: 600;
}

footer {
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: 0;
    text-align: center;
}

footer p a{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}
