@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap);

html {
    width: 100%;
    height: 100%;
}

body {
    /*background: linear-gradient(45deg, rgba(66, 183, 245, 0.8) 0%, rgba(66, 245, 189, 0.4) 100%);*/
    /*background: linear-gradient(134deg, #006fdd 12%, #00386f 107%);*/
    background: #00386f;
    color: rgb(73, 80, 87);
    /*font-family: "Roboto", sans-serif;*/
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.6em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    height: 100vh;
}

a {
    color: #556ee6;
    text-decoration: none;
}

a:hover {
    color: #4458b8;
}

h2 {
    font-size: 20px;
    font-weight: 500;
}

.page{
    position: fixed;
    background: linear-gradient(134deg, #006fdd 12%, #00386f 107%);
    height: 100%;
    width: 100%;
    margin: 0 0;
    padding: 0;
}

.mdi::before {
    display: inline-block;
    font: normal normal normal 24px/1 "Material Design Icons";
}

.mdi-eye-outline::before {
    content: "\F06D0";
}

.overlay, .form-panel.one:before {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
}

.form {
    z-index: 15;
    position: relative;
    background: #f8f8fb;
    width: min(600px, 100%);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin: 100px auto 10px;
    overflow: hidden;
}

.form-toggle {
    z-index: 10;
    position: absolute;
    top: 60px;
    right: 60px;
    background: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    transform-origin: center;
    transform: translate(0, -25%) scale(0);
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-toggle:before, .form-toggle:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 4px;
    background: #4285F4;
    transform: translate(-50%, -50%);
}

.form-toggle:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.form-toggle:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.form-toggle.visible {
    transform: translate(0, -25%) scale(1);
    opacity: 1;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 20px;
}

.form-group:last-child {
    margin: 0;
}

.form-group label {
    display: inline-block;
    margin: 0 0 10px;
    /*color: rgba(0, 0, 0, 0.6);*/
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    /*text-transform: uppercase;*/
    letter-spacing: 0.1em;
}

.two .form-group label {
    color: #FFFFFF;
}

.form-group input {
    outline: none;
    display: block;
    background: #FFFFFF;
    color: #495057;
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 12px 20px;
    /*color: rgba(0, 0, 0, 0.6);*/
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    transition: 0.3s ease;
}

.form-group input:focus {
    color: rgba(0, 0, 0, 0.8);
}

.two .form-group input {
    color: #FFFFFF;
}

.two .form-group input:focus {
    color: #FFFFFF;
}

button {
    outline: none;
    /*background: #4285F4;*/
    background: #556ee6;
    width: 100%;
    border: 0;
    border-radius: 4px;
    padding: 12px 20px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    /*text-transform: uppercase;*/
    cursor: pointer;
}

button:hover {
    background: #4458b8;
}

.two .form-group button {
    background: #FFFFFF;
    color: #4285F4;
}

.form-group .form-remember {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.form-group .form-remember input[type=checkbox] {
    display: inline-block;
    width: auto;
    margin: 0 10px 0 0;
}

.form-group .form-recovery {
    color: #4285F4;
    font-size: 12px;
    text-decoration: none;
}

.form-panel {
    padding: 60px 60px 60px 60px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .form {
        width: calc(100% - 40px);
        height: 100vh;
        display: block;
        margin: 0 20px;
    }
    .form-panel {
        padding: 60px 20px;
    }
}
@media (max-width: 384px) {
    .form {
        width: 100%;
        height: 100vh;
        display: block;
        margin: 0;
    }
}

.form-panel.one:before {
    content: "";
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.form-panel.one.hidden:before {
    display: block;
    opacity: 1;
    visibility: visible;
}

.form-panel.two {
    z-index: 5;
    position: absolute;
    top: 0;
    left: 95%;
    background: #4285F4;
    width: 100%;
    min-height: 100%;
    padding: 60px calc(10% + 60px) 60px 60px;
    transition: 0.3s ease;
    cursor: pointer;
}

.form-panel.two:before, .form-panel.two:after {
    content: "";
    display: block;
    position: absolute;
    top: 60px;
    left: 1.5%;
    background: rgba(255, 255, 255, 0.2);
    height: 30px;
    width: 2px;
    transition: 0.3s ease;
}

.form-panel.two:after {
    left: 3%;
}

.form-panel.two:hover {
    left: 93%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.form-panel.two:hover:before, .form-panel.two:hover:after {
    opacity: 0;
}

.form-panel.two.active {
    left: 10%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: default;
}

.form-panel.two.active:before, .form-panel.two.active:after {
    opacity: 0;
}

.form-header {
    margin: 0 0 40px;
}

.form-header h1 {
    padding: 4px 0;
    /*color: #4285F4;*/
    color: rgb(73, 80, 87);
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    /*text-transform: uppercase;*/
}

.two .form-header h1 {
    position: relative;
    z-index: 40;
    color: #FFFFFF;
}

.pen-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 600px;
    margin: 20px auto 100px;
}

.pen-footer a {
    color: #FFFFFF;
    font-size: 12px;
    text-decoration: none;
    text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.pen-footer a .material-icons {
    width: 12px;
    margin: 0 5px;
    vertical-align: middle;
    font-size: 12px;
}

.cp-fab {
    background: #FFFFFF !important;
    color: #4285F4 !important;
}

.error-message {
    color: #ff0000;
    text-align: center;
}

.footer {
    font-size: 13px;
    text-align: center;
}

.text-center {
    text-align: center;
}

.form-control {
    display: block;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.input-group > .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
}

.input-group .btn {
    /*display: inline-block;*/
    width: auto;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
    z-index: 2;
    background: #eff2f7;
    border: 1px solid #ced4da;
    border-left: none;
}
.btn:disabled {
    background: #ced4da;
}

.input-group .btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.input-group i {
    color: #495057;
}
.welcome-name {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 50px;
}
.logout-button {
    text-align: center;
    height: 50px;
    width: 100%;
    /*line-height: 50px;*/
    margin-top: 10px;
}
.logout-button a {
    display: inline-block;
    padding: 12px 0;
    background: #eff2f7;
    margin: auto;
    width: 100%;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.sub-container{
    width: 100%;
}