﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(0.1turn, #3f87a6, #ebf8e1, #ff3333);
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.screen {
    background: linear-gradient(0.1turn, #ff3333, #ebf8e1, #3f87a6);
    position: relative;
    height: 100vh;
    min-width: 280px;
}

.content {
    z-index: 1;
    position: relative;
    height: 100%;
}

.login {
    min-width: 280px;
    padding: 30px;
    padding-top: 156px;
}

.field {
    padding: 20px 0px;
    position: relative;
}

.licon {
    position: absolute;
    top: 30px;
    color: #7875B5;
}

.linput {
    border: none;
    border-bottom: 2px solid #D1D1D4;
    background: none;
    padding: 10px;
    padding-left: 24px;
    font-weight: 700;
    width: 75%;
    transition: .2s;
}

    .linput:active,
    .linput:focus,
    .linput:hover {
        outline: none;
        border-bottom-color: #6A679E;
    }

.lsubmit {
    background: #fff;
    font-size: 14px;
    margin-top: 30px;
    padding: 16px 20px;
    border-radius: 26px;
    border: 1px solid #D4D3E8;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    width: 100%;
    color: #4C489D;
    box-shadow: 0px 2px 2px #5C5696;
    cursor: pointer;
    transition: .2s;
}

    .lsubmit:active,
    .lsubmit:focus,
    .lsubmit:hover {
        border-color: #6A679E;
        outline: none;
    }

.screen__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.s_bg_s {
    transform: rotate(45deg);
    position: absolute;
}

.s_bg_s1 {
    height: 520px;
    width: 520px;
    background: #FFF;
    top: -50px;
    right: 120px;
    border-radius: 0 72px 0 0;
}
