* {
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

p, h1 {
    cursor: default;
}

.form-box {
    width: 100%;
    height: 760px;
    background: url(/assets/houseplants-scaled-e1593515074870.jpeg);
    background-size: cover;
    background-position: center;
}

.effect-box {
    width: inherit;
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    color: white;
    padding: 3%;
    background-color: #DDBFA9;
    height: 30%;
    width: 20%;
    box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 30px 5px;
    text-align: center;
    border-radius: 5px;
}

form h1 {
    margin-bottom: 25px;
}

.input {
    text-align: left;
}

.input input {
    opacity: 0.5;
    background-color: #DDBFA9;
    border: none;
    border-radius: 0px;
    border-bottom: 2px solid white;
    box-shadow: none;
    outline: none;
    color: white;
    width: 300px;
    letter-spacing: 2px;
    transition: 200ms ease-in;
}

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

form input:focus {
    opacity: 1;
    box-shadow: none;
    border: none;
    border-bottom: 2px solid white;
    transition: 200ms ease-out;
}

form .username {
    margin-bottom: 5%;
}

form button {
    cursor: pointer;
    margin-top: 12%;
    padding: 3px 20px;
    color: white;
    background-color: #DDBFA9;
    border: 2px solid white;
    transition: 250ms ease-in;
}

form button:hover {
    font-weight: 600;
    color: #DDBFA9;
    background-color: white;
    border-color: #DDBFA9;
    transition: 250ms ease-out;
}

.effect-box {
    backdrop-filter: blur(3px) brightness(75%);
}