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

:root {
    --primary-color: #60489d;
    --purple-another: #5e4572;
    --secondary-color: #ffe5a4;
}

body {
    overflow-x: hidden !important;
    font-family: "Tajawal", sans-serif;
    position: relative;
}
.login-page {
    min-height: 100vh;
    position: relative;
    flex-direction: column;
}
.login-card {
    background-color: var(--purple-another);
    max-width: 1114px;
    width: 100%;
    padding: 4rem 2rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-card .card-content {
    max-width: 757px;
    width: 100%;
}
.login-logo {
    max-height: 80px;
}
.login-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
}
.login-subtitle {
    color: #ebebeb;
    font-weight: 500;
    font-size: 19px;
    line-height: 100%;
    text-align: center;
}
.form-label {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 17px;
    line-height: 100%;
}
.form-control {
    min-height: 55px;
    font-size: 1.2rem;
}
.eye-icon {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% + 15px));
    left: 15px;
    cursor: pointer;
}
.btn-login,
.btn-login:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    width: 100%;
    padding: 0.75rem 1.5rem;
}
.note-text {
    color: white;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.5rem;
}
.note-text a {
    color: #ffeb99;
    font-weight: bold;
    text-decoration: underline;
}
.stars-image {
    position: absolute;
    top: 15%;
    left: 0rem;
    width: 100px;
    transform: rotate(-90deg);
}
.return-link {
    position: absolute;
    top: -5rem;
    right: 0rem;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: var(--purple-another);
}
.return-link svg {
    display: none;
}

@media (max-width: 767.98px) {
    .return-link svg {
        display: block;
    }
    .return-link span {
        display: none;
    }
}
