@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

* {
    font-family: 'Almarai', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    direction: rtl;
    background: linear-gradient(to top, rgb(0, 170, 185), #2c3e50);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: ani1 5s linear infinite;
}

@keyframes ani1 {
    0% {
        background-size: 100% 100%;
    }

    50% {
        background-size: 200% 200%;
    }

    100% {
        background-size: 100% 100%;
    }
}

.logo {
    width: 100%;
}


h2 {
    text-align: center;
    color: #fff;
    width: 100%;
    background-color: #006E78;
    padding: 15px 0px;
    border-top-right-radius: 18px;
    border-top-left-radius: 18px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin: auto;
    border-radius: 19px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.55);
}

form div {
    width: 95%;
    margin: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
form section{
    width: 100%;
    margin: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form div span {
    width: 100%;
}

form div span i {
    position: relative;
    left: -85%;
    top: 38px;
    color: #006E78;

}

label {
    color: #006E78;
    margin-bottom: -37px;
    z-index: 1;
    background-color: #fff;
    text-align: right;
    padding: 0px 10px;

}

input {
    width: 100%;
    padding: 10px;
    padding-left: 17%;
    margin: 5px 0;
    border: 1px solid #006E78;
    border-radius: 10px;
    transition: all 0.2s ease-in;
    direction: ltr;
}

input:focus {
    outline: none;
    box-shadow: 0 0 15px #005A59;
}

input:focus+label {
    background-color: #ffffff00 !important;
}

button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 6px;
    color: #fff;
    background-color: #005A59;
    cursor: pointer;
    font-weight: bold;
}

form a {
    text-decoration: none;
    color: #006E78;
    margin: 10px 0;
    width: 100%;
    text-align: right
}

.phone-span {
    display: none;
}

.name-span {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.name-span span {
    width: 48%;
}

.name-span span input {
    padding: 10px;
    direction: rtl;
}

nav {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 33, 36, 0.73);
    cursor: pointer;
    width: 100%;
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.55);
}

nav i {
    font-size: 35px;
    color: #fff;
    transform: rotate(180deg);
}

p {
    text-align: center;
    font-size: 20px;
    color: #fff;
    direction: rtl;
}
.sec2 i{
    display: none !important;
}