
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    overflow:hidden;
}

p{
    color:white;
}

h1, h2, h3, h4 {
    color:white;
}

a{
    color:white;
}

a:hover{
    color:red;
}

.login-container {
    background: #2f4050;
    padding: 0 20px;
    position: fixed;
    top: 0;
    right: 10%;
    width: 50vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; 
}

@media only screen and (max-width: 1024px) {
    .login-container {
        right: unset !important;
        width: auto !important;
    }
}

.login__field {
    padding: 20px 0;
    position: relative;
    width: 100%
}

.login__icon {
    position: absolute;
    pointer-events: none;
    top: 35px;
    color: white;
}

.login__input {
    border: none;
    border-bottom: 2px solid #d1d1d4;
    background: none;
    padding: 10px;
    padding-left: 24px;
    font-weight: 700;
    width: 100%;
    transition: .2s;
    color:white;
}

.login__input::placeholder {
    color: white;
    opacity: 1;
}
.login__input:active, .login__input:focus, .login__input:hover {
    outline: none;
    border-bottom-color: #6a679e
}


[x-cloak] {
    display: none !important;
}

.pointer-events-none {
    pointer-events: none;
}

.button-login {
    color: black;
    width: 100%;
    border-radius: 12px;
    line-height: 1.25;
    background: white;
    text-decoration: none;
    user-select: none;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    position: relative;
    transition: background-color .6s ease;
    overflow: hidden;
    margin: 5px;
    padding: 10px 10px 10px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05)
}

.btn{
    color:white;
}

.sideimage {
   height:auto;
   margin-left:-15px;
   width:100%;
}

@media only screen and (max-width: 1200px) {
    #sidebar {
      display:none;
    }
}