﻿body {
    margin: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 10px;
}

div {
    display: block;
}

.App {
    min-width: 100%;
    min-height: 100vh;
    background: #242142;
    width: 100%;
    overflow: hidden;
    color: white;
    height: 100%;
    position: relative;
    font-family: 'Ubuntu', sans-serif;
}

.App-container {
    position: relative;
    z-index: 10;
}

.theme {
    position: absolute;
    right: 5px;
    z-index: 10000;
    top: 5px;
}

.theme-light.App {
    background: #fbfbfb;
    color: #747474;
}

.App-container {
    position: relative;
    z-index: 10;
}



.theme-light .login {
    color: #747474;
}

.login {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.theme-light .login {
    color: #747474;
}

.login__modal {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: 40px;
    box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5);
    background: #1a1732;
    box-sizing: border-box;
    padding: 40px 20px;
    text-align: center;
    width: 90%;
}

login__modal p {
    font-size: 12px;
    margin-bottom: 15px;
}

.theme-light .login__modal {
    background: #f2f2f2;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.login .logo {
    margin-bottom: 40px;
}

.logo {
    font-size: 16px;
    letter-spacing: 6px;
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #79769a;
}

.form-input {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 350px;
    background-color: transparent !important;
    background-image: none !important;
    color: rgb(0, 0, 0) !important;
    text-align: left;
    border: 1px solid black;
}

.form-input input {
    outline-width: 0;
    border: none;
    border-radius: 0;
    text-align: left;
    background-color: transparent !important;
    margin-left: 2px;
    width: 99%;
    height: 48px;
    font-size: large;
}

.button {
    border: none;
    text-transform: uppercase;
    color: white;
    font-size: 16px;
    font-family: 'Ubuntu', sans-serif;
    background: #c6455f;
    width: 200px;
    font-weight: 500;
    padding: 20px;
    box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5);
    border-radius: 0;
    transition: 0.3s ease-in-out;
    outline-width: 0;
}

label {
    text-align: left;
    display: block;
    font-size: 10px;
    /*margin-bottom: 20px;
    margin-top: 5px;*/
}

.form-field {
    flex-grow: 1;
    position: relative;
}

.form-additional {
    display: flex;
    justify-content: space-between;
}

.form-additional label {
    margin-top: 35px;
    margin-left: -40px;
    font: 400 13.3333px Arial;

}

.form-forgot {
    margin-top: 35px;
    margin-left: 80px;
    color: #12b8fd;
}

.login a {
    display: inline-block;
    color: #4a4679;
    font-size: 12px;
}

.form-checkbox {
    padding-top: 30px;
    text-rendering: auto;
    color: initial;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    margin: 0em;
    font: 400 13.3333px Arial;
}

a {
    text-decoration: none;
}

input[type="radio" i], 
input[type="checkbox" i] {
    background-color: initial;
    cursor: default;
    padding: initial;
    border: initial;
    width: 20px;
    height: 20px;
}

input[type="checkbox" i] {
    margin: 3px 3px 3px 4px;
    -webkit-appearance: checkbox;
    box-sizing: border-box;
}

[type=checkbox]:checked, 
[type=checkbox]:not(:checked) {
    /*position: absolute;
    left: -9999px;*/
}

@media (min-width: 760px) {
    body {
        font-size: 12px;
    }

    .login__modal {
        width: 480px;
        padding: 60px 40px;
    }

    label {
        margin-bottom: 30px;
        margin-top: 10px;
        font-size: 12px;
    }

    .login a {
        font-size: 14px;
    }
}