
/* Google Fonts  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

@font-face {
    font-family: estedad;
    src: url("fonts/Estedad[wght\,kshd].ttf");
}

/* Globals  */
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    text-align: right;
    direction: rtl;
    font-family: estedad;
}

body {
    font-family: estedad;
    background-color: #fff;
}

/* Variables  */
:root {
    --color_Blue: #3f93f1;
    --color_Dark1: #1e1e1e;
    --color_Dark2: #252527;
    --color_Light1: #dfdfdf;
    --color_Light2: #c4c4c4;
}

/*license page*/
.licence {
    margin: 0 auto;
    width: 50%;
    border-radius: 20px;
    margin-top: 5%;
    /*box-shadow: 3px 3px 5px 1px #E1E0E499;*/
    box-shadow: 0px 17px 47px 14px rgba(0,0,0,0.1);
    padding: 2px;
    background-color: #fff;
    direction: rtl;
}

.licence-input {
    margin: 0 auto;
    text-align: center;
    margin-right: 5%;
}

.licence-input input:not(input[type="submit"]) {
        border-radius: 10px;
    }

.title {
    text-align: center;
}

.picture-container{
    width: 100%;
    height: 100%;
    background-position: center;
    background-origin: content-box;
    margin: 0 auto;
}
@media(max-width: 700px) {
    .col-lg-6 .picture-container {
        display: none;
    }
    input[type="submit"]{
        margin-bottom:2%;
    }
}