body {
    background-color: #f5f5f5;
}
@font-face
{
    src:url(../font/ArbFONTS-DINNextLTArabic-Medium-4.ttf);
    font-family:ArbFONTSDINNextL; 
}
@font-face
{
    src:url(../font/Gilroy-Light.otf);
    font-family:Gilroys; 
}
.continer {
    position: relative;
    background: white;
    width: 30%;
    margin: auto;
    margin-top: 13%;
    border-radius: 5%;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.4);
}

.continer .photo {
    position: absolute;
    left: 18%;
    top: -25%;
}

.continer .photo img {
    width: 80%;
}

.titele {
    padding-top: 25%;
    text-align: center;
    color: #313131;
    font-family:'ArbFONTSDINNextL'; 
}

.continer .login-continer {
    width: 100%;
    background: white;
    margin: auto;
    font-family:'ArbFONTSDINNextL'; 
}

.form__group {
    position: relative;
    padding: 15px 0 0;
    margin-top: 10px;
    width: 80%;
    background: white;
    margin: auto;
    margin-top: 1%;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-bottom: 2px solid #9b9b9b;
    outline: 0;
    font-size: 1.3rem;
    color: #003c78;
    padding: 7px 0;
    background: transparent;
    transition: border-color 0.2s;
}

.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown~.form__label {
    font-size: 1.3rem;
    cursor: text;
    top: 20px;
}

.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #9b9b9b;
}

.form__field:focus {
    padding-bottom: 6px;
    font-weight: 700;
    border-width: 3px;
    border-image: linear-gradient(to right, #1b03fc, #1b03fc);
    border-image-slice: 1;
}

.form__field:focus~.form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    font-weight: 700;
}


/* reset input */

.form__field:required,
.form__field:invalid {
    box-shadow: none;
}


/* demo */


/* demo */


/* button */
.log-in{
    display: flex;
    justify-content: center;
}
button {
    width: 270px;
    height: 50px;
    border: none;
    outline: none;
    background: #003c78;
    color: #fff;
    font-size: 22px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 10% 0;
    transition: 0.5s;
}

button:hover {
    background: #002244;
    transition: 1s;
}

.check-box {
    width: 50px;
    height: 50px;
    border-radius: 40px;
    box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: -40px;
    opacity: 0;
}

#btnText {
    margin-top: 15px;
}

.check-box svg {
    width: 40px;
    margin: 5px;
}

svg path {
    stroke-width: 3;
    stroke: #fff;
    stroke-dasharray: 34;
    stroke-dashoffset: 34;
    stroke-linecap: round;
}

.active {
    background: #ff2b75;
    transition: 1s;
}
.filed {
    background: #f11919;
    transition: 1s;
}
.seccessf {
    background: #00d841;
    transition: 1s;
}

.active .check-box {
    right: 0;
    opacity: 1;
    transition: 1s;
}

.active p {
    margin-right: 125px;
    transition: 1s;
}

.active svg path {
    stroke-dashoffset: 0;
    transition: 1s;
    transition-delay: 1s;
}
/*rotate image-03 css*/
.rotate_03{
	/* position: fixed;
	top: 50%;
	left: 50%;
	width: 150px;
	height: 150px;
	margin: -60px 0 0 150px; */
	-webkit-animation: spin 3s linear infinite;
	-moz-animation: spin 3s linear infinite;
	animation: spin 3s linear infinite;
}

/*use keyframes*/
@-webkit-keyframes spin{
	100%{-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin{
	100%{-webkit-transform: rotate(360deg);}
}
@keyframes spin{
	100%{-webkit-transform: rotate(360deg);}
}

/* responseve00000000000000000000000000000000000000000000000*/

@media (max-width:500px) {
    .continer {
        width: 90%;
        margin: auto;
        margin-top: 45%;
        border-radius: 5%;
    }
}

@media (min-width:501px) and (max-width:660px) {
    .continer {
        width: 90%;
        margin: auto;
        margin-top: 30%;
        border-radius: 5%;
    }
    button {
        left: 25%;
    }
}

@media (min-width:661px) and (max-width:900px) {
    .continer {
        width: 50%;
        margin: auto;
        margin-top: 20%;
        border-radius: 5%;
    }
    button {
        left: 20%;
    }
}

@media (min-width:901px) and (max-width:1140px) {
    .continer {
        width: 40%;
        margin: auto;
        border-radius: 5%;
        margin-top: 20%;
    }
    button {
        left: 15%;
    }
}