* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #272727;
}

h3{
    font-size: 24px;
    position: relative;
    font-weight: 700;
    color: #999;
    margin-bottom: 5px;
}

#form {
    position: relative;
    border: 2px solid #131313;
    background: linear-gradient(#1e2024, #18181c);
    border-radius: 4px;
    overflow: hidden;
}

#form #email {
    width: 300px;
    outline: none;
    background: transparent;
    border: navajowhite;
    padding: 12px 15px;
    padding-right: 50px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1.4px;
}

#form .indicador {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: #555;
    border-radius: 50%;
}

#form.valid .indicador {
    background: #0f0;
    box-shadow: 0 0 5px #0f0,
                0 0 10px #0f0,
                0 0 20px #0f0,
                0 0 40px #0f0;
}

#form.invalid .indicador {
    background: #f00;
    box-shadow: 0 0 5px #f00,
                0 0 10px #f00,
                0 0 20px #f00,
                0 0 40px #f00;
}