﻿html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: ProximaNova-Regular, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

button:focus {
    outline: none;
}

.login-page-container a {
    text-decoration: none;
    color: #f8710e;
    font-size: 14px;
    cursor: pointer;
}

    .login-page-container a:hover {
        text-decoration: underline;
        color: #f8710e;
    }

.inline-top {
    display: inline-block;
    vertical-align: top;
}

.inline-middle {
    display: inline-block;
    vertical-align: middle;
}

.inline-bottom {
    display: inline-block;
    vertical-align: bottom;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

/*#region hive9 input*/
.hive9-input {
    width: 100%;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
    margin-bottom: 20px;
    outline: none;
    border: solid 1px #d4d4d4;
    border-radius: 6px;
    padding: 0 10px;
    background-color: white;
}

    .hive9-input:focus {
        border-color: rgba(82, 168, 236, 0.8);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
    }

    .hive9-input.error {
        border-color: #c6605a;
        background-color: #f2dede;
    }
/*#endregion hive9 input*/

/*#region hive9 icon*/
.hive9-icon {
    color: black;
    cursor: pointer;
}

    .hive9-icon:hover {
        color: #f8710e;
    }
/*#endregion hive9 icon*/

/*#region hive9 button*/
.hive9-btn {
    min-width: 85px;
    border: solid 1px rgb(229, 229, 229);
    border-radius: 4px;
    color: rgb(63, 63, 63);
    margin-right: 10px;
    background-color: white;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    height: 30px;
    padding: 6px 12px;
}

    .hive9-btn:focus {
        outline: none;
    }

    .hive9-btn:disabled {
        background-color: rgb(229, 229, 229) !important;
        color: rgb(200, 200, 200) !important;
        cursor: not-allowed;
    }

        .hive9-btn:disabled:hover {
            background-color: rgb(229, 229, 229) !important;
        }

.hive9-btn-default:hover,
.hive9-btn-default:active {
    background-color: #abd7e1;
}

.hive9-btn-primary {
    background-color: rgb(137, 206, 222) !important;
    color: rgb(244, 245, 237) !important;
}

    .hive9-btn-primary:hover,
    .hive9-btn-primary:active {
        background-color: rgb(106, 187, 206) !important;
    }

.hive9-btn-secondary,
.hive9-btn-secondary:active {
    background-color: rgb(255, 255, 255) !important;
    border-color: rgb(63, 63, 63) !important;
}

    .hive9-btn-secondary:hover {
        background-color: rgb(63, 63, 63) !important;
        color: rgb(244, 245, 237) !important;
    }
/*#endregion hive9 button*/