﻿/* stylelint-disable selector-no-qualifying-type, property-no-vendor-prefix */

html,
body {
    height: 100%;
}

body {
    /*background: rgb(50, 102, 152);*/
    /* background: linear-gradient(135deg, rgba(102, 205, 204, 1) 0%, rgba(50, 102, 152, 1) 80%);*/
    background: rgb(7, 179, 187);
    background: linear-gradient(0deg, rgba(7, 179, 187, 1) 0%, rgba(74, 144, 206, 1) 53%, rgba(148, 106, 228, 1) 88%);
    padding-top: 40px;
    padding-bottom: 40px;
}

.login {
    height: 100%;
}

.login a {
    /* color: #d8e1e7; */
}

.vertical-align-parent {
    height: 100%;
    position: relative;
}

.vertical-align-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.logincontainer {
    background: #fff;
    padding: 0px 40px;
    width: 35vw;
    height: 100vh;
    margin-top: -40px;
    min-width: 335px;


}



.form-signin {}

.form-signin img {
    max-height: 20vh;
    max-width: 20vw;
    margin-top: 15vh;
    margin-bottom: 10vh
}

.form-signin .form-control {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
}

.form-signin .form-control:focus {
    z-index: 2;
}

.form-signin input[type="text"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.form-signin button {
    margin: 20px 0;
}

.alert {
    border-radius: 0;
    left: 0;
    margin-bottom: 0;
    padding: 15px;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
}

.navio {
    z-index: -1;
    display: flex;
    position: absolute;
    margin-top: -97px;
    margin-left: 1260px;
    animation-name: navio;
    animation-duration: 50s;
    animation-timing-function: ease-in-out;


}

.aviao {
    z-index: -1;
    display: flex;
    position: absolute;
    width: 100px;
    margin-left: -100px;
    transform: rotate(30deg);
    margin-top: -80px;
    animation-name: aviao;
    animation-duration: 15s;
    animation-timing-function: ease-in-out;
}

#CapsLock {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #ffff;
    border-radius: 5px;
    width: 115PX;
    padding: 5PX 5PX 5PX 12PX;
    background-color: RGB(100, 202, 204);
    margin-left: 12vw;
    text-align: center
}

@keyframes aviao {
    from {
        margin-top: 800px;
        margin-left: 1573px;
    }

    to {
        margin-top: -80px;
        margin-left: -100px;
    }
}

@keyframes navio {
    from {
        margin-left: -416px;
    }

    to {
        margin-left: 1260px;
    }
}