@import 'variables';
@import 'typography';
@import 'header.scss';

html,
body {
    height: 100%;
}

body > div,
body > div > section,
body > div > section > div {
    height: 100%;
    min-height: 100%;
}

.app-body {
    height: 100%;
    min-height: 100%;
    background-color: $gray-lighter;
    padding-top: 30px;
}

.splash-login {
    position: absolute;
    max-width: 699px;
    min-height: 328px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-logo {
    padding-bottom: 25px;
    padding-top: 15px;
}

.btn-primary {
    color: white;
    border-radius: 3px;
    border-color: $orange-create;
    background: $orange-create;
    box-shadow: 0px 1px 0px rgba(0,0,0,0.11);

    &:hover {
        border-radius: 3px;
        border-color: $orange-create;
        background: $orange-create;
        box-shadow: 0px 5px 10px rgba(0,0,0,0.25);
    }
}

.container-form {
    max-width: 519px;
    margin-left: auto;
    margin-right: auto;
}

header .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
}

header .container-fluid a.pull-right {
    margin-left: 10px;
}

hr {
    border-top: 2px solid #ccc
}

.user-profile-pic {
    position: relative;
    background-color: white;
    border: 1px solid #ddd;
    margin-top: 65px;
    padding-top: 75px;

    img {
        border-radius: 50%;
        position: absolute;
        top: -65px;
        left: 50%;
        transform: translateX(-50%);
        height: 130px;
        width: 130px;
    }
}