@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');
body {
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    direction: rtl
}
.loginForm {
    background: #fff;
    padding: 40px 10px 0;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(47, 43, 61,.1),0 0 transparent,0 0 transparent;
    width: 448px;
    position: relative;
    font-family: 'Cairo'
}
.logo{
    display:flex;
    justify-content: center;
    margin-bottom: 20px;
    align-items:  center
}
.title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 10px;
}
.input-field {
    height: 100%;
    background: none;
    outline: none;
    border: 1px solid #eee;
    padding: 8px 16px;
    font-size: 0.95rem;
    color: #151111;
    transition: 0.4s;
    width: 100%;
    border-radius: 8px;
    outline: none;
    height: 40px;
    direction: ltr
}
.input-field:focus {
    border: 1px solid #7367F0;
}
label {
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: normal;
    color: rgba(47,43,61,0.78);
    text-align: right;
    width: 100%
}
.sign-btn {
    display: inline-block;
    height: 43px;
    background-color: rgb(115,103,240);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 0.8rem;
    transition: 0.3s;
    width: 100%;
    height: 38px
}
.sign-btn:hover{
    opacity: 0.8
}
.welcome,
.forgetpass {
    text-align: right;
}
.forgetpass{padding-right: 24px}
.welcome{padding: 24px;margin-bottom: 20px}
.btnCon {
    padding: 0 24px 24px
}
.inputs{padding: 0 24px 24px 0}
.welcome h5 {
    color: rgba(47,43,61,0.78);
    font-size: 1.125rem;
    font-weight: 700
}
.welcome p {
    max-width: 400px;
    margin-bottom: 0;
    color: rgba(47,43,61,0.68);
    font-size: 15px
}
.top,.bottom{
    position: absolute;
    z-index: -1
}
.top img , .bottom img {
    width: 80%
}
.top{
    top: -50px;
    left: -50px
}
.bottom {
    bottom: -50px;
    right: -70px
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}    
@media screen and (max-width: 500px) {
        .top, .bottom {
            display: none
        }
    }