﻿html, body {
    height: 100%;
    width: 100%;
    background: #1b639c;
}

.container {
    height: auto;
    width: auto;
}

h3 {
    color: #FFF;
    text-align: center;
}

label {
    color: #FFF;
}

.comboBox {
    margin-bottom: 1em;
    font-size: 15px;
    width: auto;
}

    .comboBox select {
        background-color: #f2f2f2;
    }

#checkbox {
    margin-bottom: 1em;
    display: inline-block;
    font-size: 5px;
    color: #FFF;
}

form input[type="submit"] {
    margin-top: 2rem;
    padding: 0.4rem;
    background: #02A2C9;
    cursor: pointer;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
    color: #FFF;
}

    .form-group .underline::before {
        content: '';
        position: absolute;
        height: 3px;
        width: 100%;
        bottom: -5px;
        left: 0;
        background: #FFF;
    }

    .form-group .underline::after {
        content: '';
        position: absolute;
        height: 3px;
        width: 100%;
        bottom: -5px;
        left: 0;
        background: #02A2C9;
        transform: scaleX(0);
        transition: all .3s ease-in-out;
        transform-origin: left;
    }

    .form-group input:focus ~ .underline::after {
        transform: scaleX(1);
    }

    .form-group input {
        outline: none;
        font-size: 1.2rem;
        color: #FFF;
        background: #1B639C;
        border: none;
    }

::-webkit-input-placeholder {
    color: #FFF;
}

:-moz-placeholder {
    color: #FFF;
    opacity: 1;
}

* Mozilla Firefox {
    color: #FFF;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #FFF;
}

:-ms-input-placeholder {
    color: #FFF;
}