/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Buttons */
.button {
    /*	height:45px;*/
    width: 100%;
    padding: 0 12px;
    margin: 10px 0;
    position: relative;
    display: inline-block;
    color: #f7f7f7;
    font-family: arial;
    font-size: 1.125rem;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    text-align: center;
    text-indent: 0px;
    cursor: pointer;
    -webkit-border-top-left-radius: 2px;
    -moz-border-radius-topleft: 2px;
    border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
    -moz-border-radius-topright: 2px;
    border-top-right-radius: 2px;
    -webkit-border-bottom-right-radius: 2px;
    -moz-border-radius-bottomright: 2px;
    border-bottom-right-radius: 2px;
    -webkit-border-bottom-left-radius: 2px;
    -moz-border-radius-bottomleft: 2px;
    border-bottom-left-radius: 2px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .button {
        width: 100%;
    }
}

/* Gray button */
.button {
    background-color: #595959 !important;
    border-top: 1px solid #464646;
    border-right: 1px solid #464646;
    border-bottom: 3px solid #464646;
    border-left: 1px solid #464646;
    text-shadow: 0px 1px 0px #4a4a4a
}

.button:hover {
    background-color: #8c8c8c
}

.button:focus {
    outline: 3px solid #04b8ff;
}

/* Green button */
.green {
    background-color: #0B6538 !important;
    border-top: 1px solid #084426;
    border-right: 1px solid #084426;
    border-bottom: 3px solid #084426;
    border-left: 1px solid #084426;
    text-shadow: 0px 1px 0px #064c29;
}

.green:hover {
    background-color: #2ec175
}

/* Blue button */
.blue {
    background-color: #17afe8 !important;
    border-top: 1px solid #1499cb;
    border-right: 1px solid #1499cb;
    border-bottom: 3px solid #1499cb;
    border-left: 1px solid #1499cb;
    text-shadow: 0px 1px 0px #16a7de
}

.blue:hover {
    background-color: #1eb8f1
}


/* Red button */
.red {
    background-color: #b82222 !important;
    border-top: 1px solid #971919;
    border-right: 1px solid #971919;
    border-bottom: 3px solid #971919;
    border-left: 1px solid #971919;
    text-shadow: 0px 1px 0px #ab1e1e
}

.red:hover {
    background-color: #c72828
}


/* Corrections */
.button:disabled {
    cursor: pointer
}

.button:hover {
    color: #f7f7f7;
}

a.button,
span.button {
    line-height: 41px
}

button.button {
    line-height: 35px
}


.button.small {
    height: 32px;
    margin: 7px 0;
    font-size: .9375rem;
    line-height: 30px
}

.button:disabled {
    cursor: default
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Create new user */
a.create {
    height: 76px;
    width: 300px;
    line-height: 76px;
    padding: 0;
    text-indent: 53px;
    background-color: #5ba2d9;
    border: 1px solid #5090c2;
    border-bottom: 2px solid #5090c2;
    position: relative
}

a.create {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a.create:hover {
    background-color: #60a7de
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Support */
a.help {
    height: 30px;
    display: inline-block;
    clear: both;
    float: none;
    margin: 40px 0 0 0;
    color: #48515a;
    font-size: 1.125rem;
    text-indent: 34px;
    line-height: 22px
}

a.help:hover {
    text-decoration: none;
    color: #000
}


button.mitid {
    width: auto;
    height: 48px;
    padding: 0 24px;

    border-radius: 4px;
    border: none;

    font-size: .875rem;
    font-weight: bold;

    text-indent: calc(16px + calc(16px * 3.875));
    color: #FFF;

    background-color: #0060E6;
    background-image: url("/styles/img/MitID_logo.svg");
    background-repeat: no-repeat;
    background-size: auto 16px;
    background-position: 24px center;
}