@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none
}

body {
    font-family: 'Tajawal', sans-serif;
    background-size: cover;
}

[method="post"] .mb-3 {
    display: grid !important;
    grid-template-columns: 25% 74%;
    gap: 1%;
    align-items: center;
}

[method="post"] .mb-3 input:not([type="radio"]) {
    width: 100%;
    border: 1px solid #ccc;
    padding: 7px 16px;
    min-height: 42px;
}


[method="post"] {
    margin-block-start: 40px
}

.en [method="post"] {
    direction: ltr !important;
}

[method="post"] .mb-3 label {
    display: block;
}

#lang {
    color: rgb(255, 255, 255);
    background-color: rgb(52, 152, 219);
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
    padding: 7px;
}

.button {
    background-color: rgb(255, 205, 43);
    color: rgb(255, 255, 255);
    min-width: 260px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: rgba(203, 161, 24, 0.75) 0px 3px 20px;
    position: relative;
    border-radius: 50px;
    transition: all 300ms ease 0s;
    border: 0;
    padding: 20px 0px;
}

.button:hover {
    color: rgb(255, 255, 255);
    background: rgb(0, 136, 204);
}

@media (max-width:992px) {
    [method="post"] .mb-3 {
        display: block !important;
    }
}