﻿@font-face {
    font-family: Inter_Light;
    src: url(/fonts/Inter/Inter_18pt-Light.ttf);
}


.main-content{
    min-height:100vh;
    display:flex
}
.main-content .content{
    width:50%;
    padding:30px;
}
.main-content .control-group{
    padding:50px 150px;
}
.main-content .right-content{
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-primary {
    background: linear-gradient(180deg, #e0efff 0%, rgba(225, 224, 255, 0.69) 100%);
}

.logo{
    padding-left:150px;
}
.logo img {
    height: 50px
}

.control-group input {
    width: 100%;
    height: 3.813rem;
    background: #f2f7fa;
    border: 1.5px solid #eef3f6;
    box-sizing: border-box;
    border-radius: 12px;
    padding-left: 3.188rem;
    font-size: var(--pSize);
    line-height: 22px;
    transition: 0.2s ease all;
}
.login-btn {
    width: 100%;
    border-radius: 12px;
    height: 56px;
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 1rem;
    color: white;
    transition: 0.3s ease all;
    background: linear-gradient(48deg, rgba(184, 0, 95, 1) 0%, rgba(255, 105, 46, 1) 100%);
}


.field {
    position: relative;
    margin-bottom: 15px;
}
.field label::before {
        content: attr(title);
    position: absolute;
    top: 14px;
    left: 40px;
    font-size: 14px;
    color: #9b9ea1;
    transition: 200ms all 
ease;
    font-weight: bold;
    font-family: Inter_Light;
    letter-spacing: 1px;
}
.field input {
    height: 50px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    font-size: 14px;
    color: #222;
    border-radius: 9px;
    padding-left: 40px;
}
.field input:focus {
    outline: 0;
    border:1px solid #000;
    background:#fff;
}
.field input:valid + label::before {
    line-height: 20px;
    font-size: 12px;
    top: -25px;
    padding: 0 6px;
    left: 0px;
    content: attr(data-title);
    color:#000;
}
.field input:focus + label::before {
    line-height: 20px;
    font-size: 12px;
    top: -25px;
    padding: 0 6px;
    left: 0px;
     color:#000;
}
.field .icon{
       position: absolute;
    left: 15px;
    top: 18px;
    color: #9b9ea1;
}

.h-30{
    height:30px;
}

.slider{
   width:100%;
   max-width:600px;
   border-radius:25px;
   overflow:hidden
}
.slider img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
