﻿body {
}
html, body {
    font-family: "SVN-Gilroy" !important;
}

body {
    margin: 0;
}

#login-parent {
    /* background: transparent url('kinkin/img/background/bg-login.jpg') 50% / no-repeat center top; */
    background: url('../../../img/background/bg-login.png') lightgray 50% / cover no-repeat;
    height: 100vh;
    width: 100%;
}

#login-child {
    background: url('../../../img/background/Login-form-bg.png');
    width: 580px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 650px;
}




.p-40px {
    padding: 40px !important;
}

.p-90px {
    padding: 90px !important;
}

.w-80{
    width: 80%;
}

.w-60 {
    width: 60%;
}

.login-title {
    font-size: 24px;
    font-weight: 400;
}

.login-title-bold {
    font-size: 24px;
    font-weight: 600;
}

.mt-42px {
    margin-top: 40px !important;
}

#form-login {
    width: 100%;
}

.form-label {
    color: rgba(0, 0, 0, 0.50);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px !important;
}

.login-form-control {
    padding: 16px 20px !important;
    border-radius: 10px !important;
    border: 1px solid #D8D4CE !important;
}

    .login-form-control::placeholder {
        font-size: 16px;
        font-weight: 400;
    }

.input-icon {
    position: absolute;
    right: 15px;
    top: 48%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
}

#form-login button {
    padding: 15px 28px;
    border-radius: 10px;
    background: #DC1F26;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    #form-login button:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0;
        background: #fff;
        left: 100%;
        bottom: 0;
        transition: all .3s;
        opacity: 0.4;
    }

    #form-login button:hover:before {
        width: 100%;
        left: 0;
    }
    #form-login button:focus{
        box-shadow: unset !important;
    }
#form-login .form-control:focus {
    box-shadow: rgba(220, 31, 38, 0.4) 0px 0px 4px;
    border: 1px solid rgba(220, 31, 38, 0.45) !important;
}

@media (max-width: 580px) {
    /*#login-child {
        width: 90vw;
        height: auto;
    }
    input{
        width: 90vw;
    }*/

    .p-90px {
        padding: 50px !important;
    }
}