/* Basic reset */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

#formContent {
    border-radius: 10px;
    background: #fff;
    padding: 30px;
    width: 30%;
    max-width: 450px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
}

#formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}

h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
}

.form-control{
    width: 100%;
    padding: 10px 15px;
    margin: 20px auto;
    box-sizing: border-box;
}
.btn{

}

.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

.underlineHover:hover:after {
    width: 100%;
}

#icon {
    width: 60%;
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 14px;
    }

    input[type=button], input[type=submit], input[type=reset] {
        padding: 10px 40px;
        font-size: 12px;
    }

    input[type=text], input[type=password], input[type=email], input[type=tel] {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    h2 {
        font-size: 12px;
    }

    input[type=button], input[type=submit], input[type=reset] {
        padding: 8px 20px;
        font-size: 10px;
    }

    input[type=text], input[type=password], input[type=email], input[type=tel] {
        padding: 8px 10px;
        font-size: 12px;
    }
}
