﻿.form-footer {
    width: 100%;
    height: 23px;
    text-align: center;
    background-color: black;
    color: white;
    font-size: 0.8rem;
    padding-top: 8px;
    position: fixed;
    bottom: calc(0px);
    left: 0px;
    z-index: 99999;
}

.form-input {
    padding: 6px 5px;
    border: 1px solid #d7dae3;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-weight: 400;
    height: 30px;
    color: #808080 !important;
    font-size: 1rem !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

    .form-input:hover, .form-input:focus {
        box-shadow: none;
    }

    .form-input:focus {
        color: #7e7e7e;
        border-color: #4a81e0;
    }



.form-input-s {
    padding: 5px 3px;
    border: 1px solid #d7dae3;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-weight: 300;
    height: 23px;
    color: #808080 !important;
    font-size: 0.85rem !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

    .form-input-s:hover, .form-input-s:focus {
        box-shadow: none;
    }

    .form-input-s:focus {
        color: #7e7e7e;
        border-color: #4a81e0;
    }

.form-control {
    background-color: white;
    padding: 6px 12px;
    border: 1px solid #d7dae3;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-weight: 400;
    height: 43px;
    min-height: 43px;
    min-width:100px;
    color: #7e7e7e !important;
    font-size: 1.1rem !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    outline:none;
}

    .form-control:hover, .form-control:focus {
        box-shadow: none;
    }

    .form-control:focus {
        color: #7e7e7e;
        border-color: #7366ff;
    }


.form-control-s {
    background-color: white;
    padding: 6px 12px;
    border: 1px solid #d7dae3;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-weight: 400;
    height: 35px;
    min-height: 35px;
    min-width: 60px;
    color: #7e7e7e !important;
    font-size: 14px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    outline: none;
}

    .form-control-s:hover, .form-control-s:focus {
        box-shadow: none;
    }

    .form-control-s:focus {
        color: #7e7e7e;
        border-color: #7366ff;
    }



.form-button {
    border: none;
    display: block;
    position: relative;
    padding: 0.7em 2.4em;
    font-size: 18px;
    background: transparent;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    color: royalblue;
    z-index: 1;
    font-family: inherit;
    font-weight: 500;
}

    .form-button span {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        z-index: -1;
        border: 4px solid royalblue;
    }

        .form-button span::before {
            content: "";
            display: block;
            position: absolute;
            width: 8%;
            height: 500%;
            background: var(--lightgray);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-60deg);
            transition: all 0.3s;
        }

    .form-button:hover span::before {
        transform: translate(-50%, -50%) rotate(-90deg);
        width: 100%;
        background: royalblue;
    }

    .form-button:hover {
        color: white;
    }

    .form-button:active span::before {
        background: #2751cd;
    }