﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}
/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.Absolute-Center.is-Responsive {
    width: 70%;
    height: 70%;
    min-width: 300px;
    max-width: 400px;
    margin: auto;
}

.centerImage {
    max-height: 90%;
    max-width: 90%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    /*border: 2px solid rgb(44,44,44);*/
}

.btn-hytch, .btn-hytch a:visited, .btn-hytch a:active, .btn-hytch a:hover, .btn-hytch a:focus {
    text-decoration: none;
    color: white;
    background: #63B0B0;
    width: 250px;
}

.step-guide {
    font-weight: bold;
    color: #666666;
    margin-bottom: .8em;
}

.auth-form-button {
    font-size: 1.2em;
    font-weight:bold;
}

.form-footer {
    font-weight: bold;
    color: #666666;
}

.green-link {
    color: #01b2b2;
}

.black-link {
    font-weight: bold;
    color: #666666;
}

.login-form {
    background: #F3F3F3;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    margin: 0 auto;
}

.form-explanatory {
    color: #999999
}

.login-form .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    max-width: none;
}

.half-button {
    margin: 10px;
    border-radius: 0px;
    width: 130px;
    font-weight: bold;
}

.link-area {
    margin-top: 1em;
}

.btn-white {
    text-decoration: none;
    color: #666666;
    background: #FFFFFF;
    border: 2px solid #666666;
}

.permissions-bullet {
    color: #666666;
    font-weight: bold;
}

.link-spacer {
    margin-left: 20px;
    margin-right: 20px;
}

.integrationLogo {
    width: 50%;
    background: #FFFFFF;
    border: 1px solid #b6b6b6;
    padding: 20px;
}

.loader {
    margin: auto;
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 3px solid #63B0B0; /* Blue */
    border-radius: 50%;
    margin-bottom: 15px;
    width: 30px;
    height: 30px;
    left: 50%;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}