html, body {
    overflow: hidden;
    font-family: Poppins, sans-serif;
}

.radius-image {
    height: 100vh;
    width: 30vw;
    background-image: url('img/home.jpg');
    background-position: center;
    box-shadow: inset -20px 0px 20px 0px rgba(0,0,0,0.16);
    min-width: 500px;
    display: inline-block;
}

    .radius-image::before {
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 30vw;
        min-width: 500px;
        background: linear-gradient(to bottom right, rgba(14, 92, 173,0.7), rgba(121, 241, 164,0.7));
    }

    .radius-image img {
        position: absolute;
        bottom: 0;
        height: 150px;
        margin: 0 8vw;
    }

.login {
    display: inline-block;
    height: 100vh;
    padding-top: 30vh;
    padding-left: 10vw;
    position: absolute;
}

    .login h1 {
        color: #0e5cad;
    }

.inp {
    position: relative;
    margin: 40px 0;
    width: 100%;
    max-width: 300px;
    display: block;
}

    .inp .label {
        position: absolute;
        top: 16px;
        left: 0;
        font-size: 16px;
        color: #9098a9;
        font-weight: 500;
        transform-origin: 0 0;
        transition: all 0.2s ease;
    }

    .inp .border {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 100%;
        background: #0e5cad;
        transform: scaleX(0);
        transform-origin: 0 0;
        transition: all 0.15s ease;
    }

    .inp input {
        -webkit-appearance: none;
        width: 100%;
        border: 0;
        font-family: inherit;
        padding: 10px;
        height: 48px;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 2px solid #c8ccd4;
        background: none;
        border-radius: 0;
        color: #223254;
        transition: all 0.15s ease;
        margin-top: 8px;
    }

        .inp input:hover {
            background: rgba(34,50,84,0.03);
        }

        .inp input:not(:placeholder-shown) + span {
            color: #5a667f;
            transform: translateY(-26px) scale(0.75);
        }

        .inp input:focus {
            background: none;
            outline: none;
        }

            .inp input:focus + span {
                color: #0e5cad;
                transform: translateY(-26px) scale(0.75);
            }

                .inp input:focus + span + .border {
                    transform: scaleX(1);
                }

.btn-login {
    background: #0e5cad;
    color: #fff;
    padding: 10px 40px;
}

    .btn-login:hover, .btn-login:active {
        background: #1a6bc2;
        color: #fff;
    }

.only-phone {
    display: none;
}

@media screen and (max-width: 1255px) {
    .login {
        padding-left: 5vw;
    }
}

@media screen and (max-width: 1190px) {
    .radius-image::before {
        content: "";
        height: 30vh;
        width: 100vw;
    }

    .radius-image img {
        top: 0;
        height: 150px;
        margin: 10vh 45vw;
    }

    .radius-image {
        height: 30vh;
        width: 100vw;
    }

    .login {
        padding-top: 5vh;
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .radius-image {
        display: none;
    }

    .only-phone {
        display: block;
    }

    .login {
        padding-top: 20vh;
        background: url('img/home.jpg');
        background-position: center;
        background-size: cover;
        width: 100vw;
    }

        .login::before {
            content: "";
            display: block;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, .6);
        }

        .login h1 {
            color: #fff;
        }

    .inp .border {
        background: #fff;
    }

    .inp input:not(:placeholder-shown) + span {
        color: #fff;
    }

    .inp input:focus + span {
        color: #fff;
    }
}