﻿/* Start Global rules */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* End Global rules */

/* Start body rules */
body {
    background: url(https://primarius.azureedge.net/primarius/login_bg.png);
    font-family: 'Arial', cursive;
    /*   the main font */
    font-family: 'Arial', sans-serif;
    opacity: .95;
}

#btnsgn {
    background-color: #AFEFDD;
}

.avatar {
    margin: auto;
    border-radius: 100px;
    height: 65px;
    /*  background: #448ed3;*/
    position: relative;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#loginForm {
margin:auto;
width:70%;
}

#loginForm > .dx-field > .dx-field-label {
    width: 13%;
}

#loginForm > .dx-field > .dx-field-value {
    width: 87%;
}

.other {
    display: inherit;
}
/* End body rules */

/* Start form  attributes */
.form {
    width: 450px;
    min-height: 500px;
    height: auto;
    border-radius: 5px;
    margin: 2% auto;
    box-shadow: 0 9px 50px hsla(20, 67%, 75%, 0.31);
    padding: 2%;
    background-image: linear-gradient(-225deg, #E3FDF5 50%, #FFE6FA 50%);
}
/* form Container */
form .con {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
}

/* the header form form */
header {
    margin: 2% auto 10% auto;
    text-align: center;
}
    /* Login title form form */
    header h2 {
        font-size: 250%;
        font-family: 'Arial', serif;
        color: #3e403f;
    }
    /*  A welcome message or an explanation of the login form */
    header p {
        letter-spacing: 0.05em;
    }


.input-item {
    background: #fff;
    color: #333;
}
/* inputs form  */
.form-input {
    width: 240px;
    height: 50px;
    margin-top: 2%;
    padding: 15px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    color: #5E6472;
    outline: none;
    border: none;
    border-radius: 0px 5px 5px 0px;
    transition: 0.2s linear;
}

input[id="txt-input"] {
    width: 250px;
}
/* focus  */
input:focus {
    transform: translateX(-2px);
    border-radius: 5px;
}

/* Submits */
.submits {
    width: 48%;
    display: inline-block;
    float: left;
    margin-left: 2%;
}

/*       Forgot Password button FAF3DD  */
.frgt-pass {
    background: transparent;
}

/*     Sign Up button  */
.sign-up {
    background: #B8F2E6;
}

