* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
:root {
    --primary: #e55e46;
    --primary-light: #eef2ff;
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
     --accent: #ff8b3d;
    --accent-dark: #ff6a1b;
}

body {
       background:#f3f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.container {
    width: 900px;
    max-width: 95%;
}

/* Login Box */
.login_box {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.login-loader {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);

    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}


.loader-card {

    width: 320px;
    padding: 35px;
     background: #1f1f1f;
       border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: popup .3s ease;

}


.loader-card h3 {

    margin: 15px 0 5px;
    color: #f8f9fa;
    font-size: 20px;

}


.loader-card p {

    color: #686868;
    font-size: 14px;

}


.spinner {

    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 5px solid #e5e7eb;
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
    margin: auto;

}


.progress-bar {

    width:100%;
    height:8px;
    background:#e5e7eb;
    border-radius:20px;
    overflow:hidden;
    margin-top:25px;

}


.progress-fill {

    height:100%;
    width:0%;
    background:linear-gradient(
        90deg,
        var(--accent),
        #7c3aed
    );

    animation: progress 2s infinite;

}


@keyframes spin {

    to {
        transform:rotate(360deg);
    }

}


@keyframes progress {

    0% {
        width:0%;
    }

    50% {
        width:75%;
    }

    100% {
        width:100%;
    }

}

/* Left Side */
.img_side {
    width: 50%;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.img_side h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* Right Side */
.login_side {
    width: 50%;
    padding: 40px;
}

.login_side h1 {
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 20px;
    color: #777;
}

/* Inputs */
.input_group {
    margin-bottom: 15px;
}

.input_group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.input_group input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
}

.input_group input:focus {
    border-color: var(--primary);
}

/* Options */
.options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 20px;
}

.options a {
    text-decoration: none;
    color: var(--primary);
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: var(--primary);
}

/* Signup */
.signup {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.signup a {
    color: var(--primary);
    text-decoration: none;
}