﻿* {
    box-sizing: border-box;
}

p {
    color: #939598;
    font-family: sans-serif;
}

a {
    display: inline-block;
    color: #C41B17;
    font-family: sans-serif;
}

    a:hover {
        display: inline-block;
        color: #C41B17;
        font-family: sans-serif;
    }

label {
    font-family: sans-serif;
}

.btn-danger {
    font-family: sans-serif;
    background-color: #C41B17;
    border-color: #C41B17
}

    .btn-danger:hover {
        font-family: sans-serif;
        background-color: #C41B17;
        border-color: #C41B17
    }

h1 {
    font-family: sans-serif;
}

h2 {
    font-family: sans-serif;
    text-align: center;
    margin-bottom: 50px;
}

h3 {
    font-family: sans-serif;
}

h4 {
    font-family: sans-serif;
}

h2 small {
    font-family: sans-serif;
    font-weight: normal;
    color: #888;
    display: block;
}

.footer {
    text-align: center;
}

    .footer a {
        color: #53B2C8;
        font-family: sans-serif;
    }

/* form starting stylings ------------------------------- */
.group {
    position: relative;
    margin-bottom: 30px;
}

input, select {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #757575;
    color: green;
    font-size: 14px;
    color: #222222;
    font-weight: 500;
}

    input:focus,
    select:focus {
        outline: none;
    }

/* LABEL ======================================= */
label {
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    font-family: sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #777777;
}

/* active state */
input:focus ~ label, input:valid ~ label,
select:focus ~ label, select:valid ~ label{
    top: -20px;
    font-size: 14px;
    color: #777777;
    font-weight: 500;
    font-family: sans-serif;
    font-style: normal;
}

/* BOTTOM BARS ================================= */
.bar {
    position: relative;
    display: block;
    width: 100%;
}

    .bar:before, .bar:after {
        content: '';
        height: 2px;
        width: 0;
        bottom: 1px;
        position: absolute;
        background: #000000;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    .bar:before {
        left: 50%;
    }

    .bar:after {
        right: 50%;
    }

/* active state */
input:focus ~ .bar:before, input:focus ~ .bar:after,
select:focus ~ .bar:before, select:focus ~ .bar:after{
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
input:focus ~ .highlight,
select:focus  ~ .highlight{
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #000000;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #000000;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #000000;
    }

    to {
        width: 0;
        background: transparent;
    }
}





.input-default, .select-default {
    width: 100%;
    border: black;
    border-bottom: 1.5px solid;
    margin: 2px;
}

input[type="date"] {
    position: relative;
}

    /* create a new arrow, because we are going to mess up the native one
see "List of symbols" below if you want another, you could also try to add a font-awesome icon.. */
input[type="date"]:after {
    content: "\25BC";
    color: #555;
    padding: 0 5px;
}


/* make the native arrow invisible and stretch it over the whole field so you can click anywhere in the input field to trigger the native datepicker*/
input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
}

/* adjust increase/decrease button */
input[type="date"]::-webkit-inner-spin-button {
    z-index: 1;
}

/* adjust clear button */
input[type="date"]::-webkit-clear-button {
    z-index: 1;
}

.sigunup-section-title {
    height: 7.8vh;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
    .sigunup-section-title h5 {
        color: #C41B17;
        font-size: 18px;
        font-weight: bold;
        line-height: 22px;
    }
