#shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    transition: 0.2s all;
    opacity: 0;
}

#modal {
    position: fixed;
    width: 33.33%;
    left: 33.33%;
    background-color: #FFFFFF;
    border-radius: 10px;
    top: 50px;
    padding: 20px;
    z-index: 10001;
    text-align: center;
    display: none;
    transition: 0.2s opacity;
    transition: 0.3s transform;
    opacity: 0;
    transform: scale(0);
}

#modal h1 {
    background: none;
    text-align: center;
    margin: 0;
    padding: 0;
    text-shadow: none;
    color: #EA581A;
    font-family: Montreal-Heavy;
}

#modal h1.red {
    color: red;
}

#modal h1.blue {
    color: #1A62EA;
}

#modal p {
    color: #333;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: SourceSansPro;
}

#modal input {
    margin: auto;
    padding: 15px;
}

#modal input:hover {
    box-shadow: inset 0px 0px 0px 5px rgba(255, 255, 255, 0.5) !important; !important;
}

#modal input.red {
    background: red;
}

#modal input.blue {
    background: #1A62EA;
}

#modal input.green {
    background: #209106;
}

#modal input.grey {
    background: #AAA;
}
