* {
    direction: rtl;
    padding: 0;
    margin: 0;
    font-family: "Cairo", sans-serif;
}

.text-denger {
    color: red;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #ef509b;
}

a {
    text-decoration: none;
}

.links {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.links a:first-child {
    flex-shrink: 1;
}

.links a:last-child {
    flex-shrink: 2;
}

form {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    grid-column: 1/2;
    grid-row: 1/2;
    overflow: hidden;
    padding: 0 5rem;
}

form .input-rememebr {
    max-width: 325px;
    width: 100%;
    height: 29px;
    margin: 18px 0;
    background-color: #f0f0f0;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 13% 6% 78%;
    padding: 0.8rem;
}

form .input-rememebr i {
    text-align: center;
    padding: 9px 0;
    color: #ccc;
}

form .input-rememebr input {
    margin-top: 9px;
    background: none;
    outline: none;
    border: none;
    font-size: 1.2rem;
}

form .input-date {
    max-width: 338px;
    width: 100%;
    height: 55px;
    margin: 10px 0;
    background-color: #f0f0f0;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 50%;
}

form .input-date input {
    background: none;
    outline: none;
    border: none;
    font-size: 1.2rem;
}

form .input-date input:focus {
    background-color: none;
}

form .input-field {
    max-width: 338px;
    width: 100%;
    height: 55px;
    margin: 10px 0;
    background-color: #f0f0f0;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0.4rem;
}

form .input-field i {
    text-align: center;
    padding: 18px 0;
    color: #ccc;
}

form .input-field input {
    background: none;
    outline: none;
    border: none;
    font-size: 1.2rem;
}

form .input-field input:focus {
    background-color: none;
}

form .input-field select {
    background: none;
    outline: none;
    border: none;
    font-size: 1.2rem;
    margin: 1px 0;
}

form .input-field select:focus {
    background-color: none;
}

form .input-field textarea {
    background: none;
    outline: none;
    border: none;
    font-size: 1.2rem;
    margin: 1px 0;
}

form .input-field textarea:focus {
    background-color: none;
}

form .btn-login,
form .btn-forget {
    width: 24%;
    background-color: #65C18C;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    transition: all 0.5s ease-in-out;
    font-weight: bold;
    margin-bottom: 10px;
    height: 56px;
}

form .btn-login:hover,
form .btn-forget:hover {
    background-color: #65C18C;
}