html{
	background: none;
}
#sub-content
{
  /*margin-left: unset;*/
}
#logo_mip{
	position: absolute;
	width:50%;
	max-width: 228px;
	top: 30px;
	left: 30px;
}

#auth_form{
	margin: 100px auto;
    /* margin-left: 33%; */
    width: 100%;
    max-width: 365px;
    background: #ffffff;
    height: auto;
    overflow: hidden;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}
#auth_form img 
{
	margin-top:55px;
	height: 74px;
	margin-bottom: 15px;
}

p{
	text-align: center;
}
.login-btns
{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.text-field_floating-2 {
    position: relative;
	width: 20rem;
}
.text-field__label {
      display: block;
      margin-bottom: 0.25rem;
    }

    .text-field__input {
      display: block;
    width: 100%;
    height: calc(1.5rem + 1px);
    padding: 0.375rem 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #6385cb;
    border-radius: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	min-width: 18rem;
    }
	.text-field__input::placeholder {
      color: #212529;
      opacity: 0.4;
    }

    .text-field__input:focus {
      color: #212529;
      background-color: #fff;
      border-color: #bdbdbd;
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(158, 158, 158, 0.25);
    }

    .text-field__input:disabled,
    .text-field__input[readonly] {
      background-color: #f5f5f5;
      opacity: 1;
    }

    /* with floating label */
    .text-field_floating-2 {
      position: relative;
    }

    .text-field_floating-2 .text-field__input {
      padding: 0.5rem 0.75rem;
    }

    .text-field_floating-2 .text-field__label {
            position: absolute;
    top: 0vw;
    left: 0.3125rem;
    display: flex;
    transform: translateY(-50%);
    pointer-events: none;
    border: none;
    background-color: #fff;
    color: #757575;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    border-radius: 6px;
    font-size: 0.9rem;
    left: 0.5rem;
    }

    .text-field_floating-2 .text-field__input::-moz-placeholder {
      color: transparent;
    }

    .text-field_floating-2 .text-field__input::placeholder {
      color: transparent;
    }

#login
{
	background-color: #6385cb;
    width: 19.5rem;
    border-radius: 0.8rem;
    padding: 8px;
    color: white;
    height: 2.5rem;
}
.forget,.remember
{
	color: #6385cb;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

input{
	width:100%;
	max-width:200px;
	height:35px;
	padding:0 7px;
	font-size:16px;
	border:1px solid #777;
	border-radius:4px;
	font-family:PT Sans,Helvetica,Calibri,Arial,Helvetica;
	-webkit-border-radius:4px;
    -moz-border-radius:4px;
}

button{
	cursor:pointer;
	background:none;
	border:none;
}

.fa-lock{
	position: absolute;
	right:10px;
	top:7px;
}

/* --- 3. ПЛАНШЕТЫ (самый важный брейкпоинт) --- */
@media screen and (max-width: 991px) {
    .text-field_floating-2 {
        width: auto;
    }
    #auth_form {
        width: auto;
        padding: 1rem;
    }
    footer {
        display: none;
    }
    .logo1, .logo3 {
        display: block;
    }

}

/* --- 4. ТЕЛЕФОНЫ (самый важный брейкпоинт) --- */
@media screen and (max-width: 767px) {}

/* --- 5. МАЛЕНЬКИЕ ТЕЛЕФОНЫ (редко, только для очень узких) --- */
@media screen and (max-width: 575px) {

}