/* Login Register Forgot password page css starts */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

:root {
    --bg-primary-light: #007c8912;
    --primary-color: #007c89;
    --border-color: #E5E5E5;
    --text-main: #1A1A1A;
    --text-muted: #8E8E93;
    --bg-light: #F9FAFB;
    --primary-purple: #6343E4;
    --hover-bg: #F2F2F7;
}
    body {
        margin: 0;
        background: #f6f6f4;
        height: 100% !important;
        font-family: "Inter", sans-serif;
    }

input, textarea, button, a, p{
        font-family: "Inter", sans-serif;
}

    main.login-main {
        width: 100%;
        height: 100vh;
        display: flex;
    }

.container {
    width: 1200px;
    margin: auto;
}

    /* Language */
    .top-right {
        width: 100%;
        text-align: right;
        padding: 16px 24px;
        color: #007c89;
        font-size: 15px;
    }

.goBack {
    color: gray;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
}

    /* Card */
    .login-card {
        background: #ffffff;
        width: 100%;
        max-width: 450px;
        border-radius: 10px;
        padding: 40px;
        box-shadow: 0 0 0 1px #e3e3e3;
        margin: auto;
    }

    h1 {
        font-size: 35px;
        font-weight: 600;
        margin: 0 0 15px;
        color: #241c15;
    }

    .sub-text {
        font-size: 16px;
        margin-top: 16px;
        color: #241c15;
        text-align: center;
    }

    .sub-text a {
        color: #007c89;
        text-decoration: underline;
    }

    label {
        display: block;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #241c15;
    }

    input[type="text"],
    input[type="password"] {
        width: 100%;
        padding: 12px;
        border-radius: 6px;
        border: 1px solid #cfcfcf;
        font-size: 15px;
        outline: 0;
    }

.input_email, .input_password {
    margin-bottom: 24px;
}

    .password-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .show {
        font-size: 15px;
        color: #007c89;
        cursor: pointer;
        user-select: none;
        padding-left: 5px;
    }

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.login-contents {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#togglePassword, #togglePassword1 {
    cursor: pointer;
    margin-bottom: 10px;
}
#togglePassword ion-icon, #togglePassword1 ion-icon {
    color: #007c89;
}

    .remember {
        display: flex;
        align-items: center;
        font-size: 16px;
        color: #241c15;
    }

.justify-space-between {
    justify-content: space-between;
}

.rem-box {
    margin-bottom: 42px;
}

.rem-box a {
    color: #007c89;
    font-size: 16px;
}

    .remember input {
        margin-right: 8px;
        width: 18px;
        height: 18px;
    }

   .login-card button {
        width: 100%;
        padding: 14px;
        background: #007c89;
        border: none;
        border-radius: 30px;
        color: white;
        font-size: 16px;
        font-weight: 600;
        outline: 0;
        cursor: pointer;
    }

    .login-card button:hover {
        background: #006570;
    }

    /* Footer */
    footer {
        margin-top: auto;
        padding: 24px;
        font-size: 12px;
        color: #6a6a6a;
        text-align: left;
    }

    footer a {
        color: #6a6a6a;
        text-decoration: underline;
    }

/* Css loader */
.transition-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.transition-loader.active {
    opacity: 1;
    visibility: visible;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f0f0f0;
    border-top: 5px solid #3498DB;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.transition-loader p {
    font-size: 16sp;
    color: #333;
    margin: 0;
}

.message, .login-server-error {
            padding: 14px 18px;
            margin: 20px 0;
            border-radius: 10px;
            font-size: 16px;
            text-align: center;
            font-weight: 500;
        }
        .success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        .error, .login-server-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

