﻿/*@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    display: grid;
    height: 100%;
    width: 100%;
    place-items: center;
    background: #f2f2f2;
    /* background: linear-gradient(-135deg, #c850c0, #4158d0); */
}

::selection {
    background: #4158d0;
    color: #fff;
}

.wrapper-login {
    width: 380px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
}

    .wrapper-login .title {
        font-size: 30px;
        font-weight: 600;
        text-align: center;
        line-height: 100px;
        color: #fff;
        user-select: none;
        border-radius: 15px 15px 0 0;
        background: linear-gradient(-135deg, #c850c0, #4158d0);
    }

    .wrapper-login .kform {
        padding: 10px 30px 50px 30px;
    }

        .wrapper-login .kform .field {
            height: 50px;
            width: 100%;
            margin-top: 20px;
            position: relative;
        }

            .wrapper-login .kform .field input {
                height: 100%;
                width: 100%;
                outline: none;
                font-size: 17px;
                padding-left: 20px;
                border: 1px solid lightgrey;
                border-radius: 25px;
                transition: all 0.3s ease;
            }

                .wrapper-login .kform .field input:focus,
                .kform .field input:valid {
                    border-color: #4158d0;
                }

            .wrapper-login .kform .field label {
                position: absolute;
                top: 0%;
                left: 20px;
                color: #999999;
                font-weight: 400;
                font-size: 17px;
                pointer-events: none;
                transform: translateY(-50%);
                transition: all 0.3s ease;
            }

.kform .field input:focus ~ label,
.kform .field input:valid ~ label {
    top: 0%;
    font-size: 16px;
    color: #4158d0;
    background: #fff;
    transform: translateY(-50%);
}

.kform .content {
    display: flex;
    width: 100%;
    height: 50px;
    font-size: 16px;
    align-items: center;
    justify-content: space-around;
}

    .kform .content .checkbox {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .kform .content input {
        width: 15px;
        height: 15px;
        background: red;
    }

    .kform .content .checkbox .klabel {
        color: #262626;
        user-select: none;
        margin-bottom: .0rem;
        padding-left: 5px;
    }

    .kform .content .pass-link {
        color: green;
    }

.kform .field input[type="submit"] {
    color: #fff;
    border: none;
    padding-left: 0;
    margin-top: -10px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    background: linear-gradient(-135deg, #fdc526, #e4332d);
    transition: all 0.3s ease;
}

    .kform .field input[type="submit"]:active {
        transform: scale(0.95);
    }

.kform .signup-link {
    color: #262626;
    margin-top: 20px;
    text-align: center;
}

    .kform .pass-link a,
    .kform .signup-link a {
        color: #4158d0;
        text-decoration: none;
    }

        .kformform .pass-link a:hover,
        .kform .signup-link a:hover {
            text-decoration: underline;
        }

.kform .btnlogin {
    font-weight: 700;
    padding-top: 10px;
    margin: 5px;
    border: 2px solid #fdc526;
    width: 200px;
    height: 48px;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

.welcome .btn:hover {
    color: #cb231c;
}

.title-login {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 0;
}

    .title-login .headinglogin {
        font-family: 'Montserrat', sans-serif;
        text-align: center;
        display: block;
        line-height: 20px;
        font-size: 16px;
        color: #262626;
        margin-top: 11px;
    }

    .title-login h5 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        line-height: 1.2;
        color: #262626;
        margin-top: 0;
        margin-bottom: 10px;
        padding-top: 15px;
        text-transform: uppercase;
    }

    .title-login img {
        width: 75px;
        height: 75px;
    }
