* {
    box-sizing: border-box;
}

html,body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    background-image: url('playground-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}

.back-home {
    position: absolute;
    top: 25px;
    left: 25px;
    text-align: left;
}

.back-home a {
    text-decoration: none;
    font-weight: 300;
    color: #ffffff;
    transition: color 0.2s ease-out;
}

.back-home a:hover {
    color: #41e6e8;
}

.back-home big {
    font-size: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

#login-container {
    opacity: 0;
    position: relative;
    top: 40%;
    transform: translateY(-50%);
    display: inline-block;
    background-color: rgba(49, 29, 82, 0.75);
    padding: 30px 50px;
    -webkit-box-shadow: 0px 5px 20px 5px rgba(0,0,0,0.45);
    -moz-box-shadow: 0px 5px 20px 5px rgba(0,0,0,0.45);
    box-shadow: 0px 5px 20px 5px rgba(0,0,0,0.45);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

#login-container.loaded {
    opacity: 1;
    transform: translateY(-40%);
}


.title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

#status {
    margin: 20px 0;
    color: #41e6e8;
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

#status.visible {
    opacity: 1;
    pointer-events: none;
}

.logins {
    margin: 20px 0;
}

.logins input {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    width: 300px;
    background-color: transparent;
    color: #ffffff;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 0 5px;
    outline: none;
    transition: border 0.25s ease-out;
}

.logins input:focus {
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.logins input::-webkit-input-placeholder {
    font-family: 'Roboto', sans-serif;
    color: #b8b8b8;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.logins input::-moz-placeholder {
    font-family: 'Roboto', sans-serif;
    color: #b8b8b8;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.logins input:-ms-input-placeholder {
    font-family: 'Roboto', sans-serif;
    color: #b8b8b8;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

#submit {
    margin-top: 30px;
}

#submit-button {
    display: block;
    position: relative;
    font-family: 'Roboto', sans-serif;
    background-color: #2ab9bb;
    padding: 10px 50px;
    cursor: pointer;
    border-radius: 2px;
    border: none;
    color: #ffffff;
    font-weight: 700;
    outline: none;
    margin: 0 auto;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#submit-button::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

#submit-button:hover:after {
    box-shadow: inset 0 -3px rgba(0, 0, 0, 0.35);
}

.forgot-container {
    position: relative;
    margin-top: 30px;
}

#forgot {
    display: inline-block;
    font-weight: 300;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: color 0.2s ease-out;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#forgot:hover {
    color: rgba(255, 255, 255, 0.8);
}

#tooltip {
    position: absolute;
    display: inline-block;
    border-radius: 2px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 200px;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
    color: #ffffff;
    padding: 10px 40px;
    cursor: default;
    opacity: 0;
    transform: translateY(-25%);
    transition: opacity 0.3s ease-out;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#tooltip.visible {
    pointer-events: all;
    opacity: 1;
}
