/* style.css - Shared styles for login and signup pages */
/* :root {
    --tg-primary-color: #0055FF;
    --tg-secondary-color: #00194C;
    --tg-blue: #0049DC;
    --tg-body-font-color: #334770;
    --tg-section-background: #b9cdff;
    --tg-light-blue-bg: #bdd2fa;
   
} */

/* * {
    margin: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
} */

.sign-up-in {
    background: linear-gradient(var(--tg-section-background), var(--tg-primary-color));
    /* background: url("../img/real/tools.jpg"); */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
    position: relative;
    z-index: 1;
}

.sign-up-in::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);

    z-index: 1;
}

/* .sign-up-in::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 94, 255, 0.268);

} */

.sign-up-in .container {
    display: flex;
    width: 100%;
    max-width: 800px;
    background: white;
    /* 30% opaque white background */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 85, 255, 0.15);
    /* Slightly stronger shadow for better contrast */
    overflow: hidden;
    background-image: url(&quot;assets/img/bg/h2_blog_bg.jpg&quot);
    z-index: 1;
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 1;



}


/* Left Panel Styling */
.sign-up-in .left-panel {
    flex: 1;
    background: linear-gradient(var(--tg-section-background), var(--tg-primary-color));
    color: rgb(0, 0, 0);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* Add subtle pattern to left panel */
.sign-up-in .left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg...");
    opacity: 0.3;
}

.sign-up-in .left-panel>* {
    position: relative;
    z-index: 1;
}

/* Right Panel Styling */
.sign-up-in .right-panel {
    flex: 1;
    padding: 3rem 2rem;
    background: transparent;
}

/* Logo */
.sign-up-in .logo {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sign-up-in .logo img {
    max-width: 200px;
}

.sign-up-in img,
.sign-up-in .img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

.sign-up-in img,
.sign-up-in svg {
    vertical-align: middle;
}

.sign-up-in .logo-dot {
    width: 8px;
    height: 8px;
    background: #0055FF;
    border-radius: 50%;
}

/* Typography */
.sign-up-in h1 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
}

.sign-up-in .subtitle {
    color: #64748b;
    margin-bottom: 40px;
}

.sign-up-in .panel-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.sign-up-in .panel-description {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.sign-up-in .system-highlight,
.sign-up-in .feature-highlight {
    font-weight: 600;
    color: rgb(0, 0, 0);
}

/* Form */
.sign-up-in .form-group {
    margin-bottom: 20px;
}

.sign-up-in label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
    color: #000000;
}

.sign-up-in input {
    width: 100%;
    padding: 8px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.sign-up-in input:focus {
    outline: none;
    border-color: #0055FF;
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
    background-color: white;
}

.sign-up-in input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-top: 2px;
}

/* Password Strength */
.sign-up-in .password-strength {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.sign-up-in .strength-meter {
    height: 100%;
    width: 0;
    transition: width 0.3s ease, background-color 0.3s ease;
}

/* Error */
.sign-up-in .error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 6px;
    display: none;
}

/* Buttons */
/* .sign-up-in .btn {
    width: 100%;
    padding: 12px;
    background: #0055FF;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 450;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
} */

/* .sign-up-in .btn:hover {
    background: #0044cc;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 85, 255, 0.2);
} */

.sign-up-in .btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.sign-in {
    border: none;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--tg-white);
    text-transform: uppercase;
    background: var(--tg-secondary-color);
    border-radius: 30px;
    padding: 14px 20px;
}

.sign-in:hover {
    background: var(--tg-primary-color);
}

/* Links */
.sign-up-in .link {
    color: #0055FF;
    text-decoration: none;
    font-weight: 500;
}

.sign-up-in .link:hover {
    color: #0044cc;
    text-decoration: underline;
}

/* Divider */
.sign-up-in .divider {
    text-align: center;
    margin: 30px 0;
    color: #94a3b8;
    position: relative;
}

.sign-up-in .divider::before,
.sign-up-in .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e2e8f0;
}

.sign-up-in .divider::before {
    left: 0;
}

.sign-up-in .divider::after {
    right: 0;
}

/* Terms */
.sign-up-in .terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
}

.sign-up-in .terms label {
    font-size: 16px;
    color: #64748b;
    line-height: 1.5;
    font-weight: normal;
}

/* Features */
.sign-up-in .features {
    list-style: none;
}

.sign-up-in .features li {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
}

.sign-up-in .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign-up-in .feature-text {
    font-size: 15px;
    opacity: 0.95;
}

/* Utility */
.sign-up-in .text-center {
    text-align: center;
}

.sign-up-in .text-right {
    text-align: right;
}

.sign-up-in .mt-10 {
    margin-top: 10px;
}

.sign-up-in .mt-20 {
    margin-top: 20px;
}

.sign-up-in .mt-30 {
    margin-top: 30px;
}

.sign-up-in .mb-10 {
    margin-bottom: 10px;
}

.sign-up-in .mb-20 {
    margin-bottom: 20px;
}

.sign-up-in .mb-30 {
    margin-bottom: 30px;
}

/* Section */
.sign-up-in .section {
    background: var(--tg-light-blue-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {

    .sign-up-in body {
        padding: 1rem;
    }

    .sign-up-in .section {
        padding: 1.5rem;
    }

    .sign-up-in .container {
        flex-direction: column;
        max-width: 100%;
        border-radius: 30px;
    }

    .sign-up-in .left-panel {
        padding: 3rem 2rem 0rem 2rem;
    }

    .sign-up-in .right-panel {
        padding: 0rem 2rem 3rem 2rem;
    }


    .sign-up-in h1 {
        font-size: 2rem;
    }

    .sign-up-in .panel-title {
        font-size: 2rem;
    }

    .sign-up-in label {
        font-size: 18px;
    }

    .sign-up-in input {
        font-size: 18px;
        padding: 1rem 1.5rem;
    }

    .sign-up-in .btn {
        font-size: 16px;
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {



    .sign-up-in h1 {
        font-size: 2rem;
    }

    .sign-up-in .panel-title {
        font-size: 1.75rem;
    }
}


/* Login Section */
.login-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card */
.login-card {
    width: 420px;
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Top indicator */
.login-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.login-indicator .dot {
    width: 16px;
    height: 16px;
    background: #63d3b4;
    border-radius: 50%;
}

.login-indicator .bar {
    width: 55px;
    height: 14px;
    background: #1f6ad8;
    border-radius: 20px;
}

/* Titles */
.login-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e2a3b;
}

.login-subtitle {
    font-size: 14px;
    color: #6b7a90;
    margin-bottom: 30px;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
    color: #1e2a3b;
}

.form-group input {
    width: 100%;
    padding: 7px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #0d5ed7;
    box-shadow: 0 0 0 2px rgba(13, 94, 215, 0.15);
}

/* Forgot */
.forgot-link {
    display: block;
    text-align: right;
    font-size: 13px;
    color: #0d5ed7;
    text-decoration: none;
    margin-top: -10px;
    margin-bottom: 25px;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Button */
.login-btn {
    width: 100%;
    padding: 13px;
    background: var(--tg-secondary-color);
    ;
    border: none;
    color: #fff;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: #0b4fb8;
}

.login-section {
    background: linear-gradient(var(--tg-section-background), var(--tg-primary-color));
    /* background: url("../img/real/tools.jpg"); */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
    position: relative;
    z-index: 1;

}

.login-section .link {
    color: #0055FF;
    text-decoration: none;
    font-weight: 500;
}

.login-section .divider::after {
    right: 0;
}

.login-section .divider::before {
    left: 0;
}

.login-section .divider {
    text-align: center;
    margin: 30px 0;
    color: #94a3b8;
    position: relative;
}

.login-section .divider::before,
.login-section .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e2e8f0;
}