    body {
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(135deg, #000, #1a1a1a);
        color: #fff;
        overflow-x: hidden;
    }

    /* Navbar */
    .navbar {
        background-color: #000;
        border-bottom: 1px solid #fa8232;
    }

    .navbar-brand h3 {
        color: #fff;
        font-weight: 600;
        font-size: 1.3rem;
        margin-left: 10px;
    }

    .nav-link:hover {
        color: #fa8232 !important;
    }

    /* Center Container */
    .container-1 {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding: 20px;
    }

    /* Login Card */
    .login-form {
        background-color: #111;
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(250, 130, 50, 0.3);
        padding: 40px 30px;
        width: 100%;
        max-width: 420px;
        text-align: center;
    }

    .login-form h2 {
        color: #fa8232;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }

    /* Input Fields */
    .form-group label {
        color: #fa8232;
        font-weight: 500;
        text-align: left;
        display: block;
    }

    .form-control {
        background-color: #1e1e1e;
        border: 1px solid #fa8232;
        color: #fff;
        border-radius: 8px;
        padding: 10px 40px 10px 10px;
        transition: box-shadow 0.3s, border-color 0.3s;
    }

    .form-control:focus {
        background-color: #262626;
        border-color: #ff9933;
        box-shadow: 0 0 10px rgba(250, 130, 50, 0.6);
        color: #fff;
    }

    /* 👁️ Eye Icon */
    .password-wrapper {
        position: relative;
    }

    .toggle-password {
        position: absolute;
        top: 65%;
        right: 12px;
        transform: translateY(-50%);
        color: #fa8232;
        cursor: pointer;
        font-size: 1rem;
        transition: color 0.3s ease, transform 0.1s;
    }

    .toggle-password:hover {
        color: #ff9933;
        transform: translateY(-50%) scale(1.15);
    }

    /* Buttons */
    .login-button {
        background-color: #fa8232;
        color: #000;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        padding: 12px;
        width: 100%;
        transition: all 0.3s;
    }

    .login-button:hover {
        background-color: #ff9933;
        transform: scale(1.02);
    }

    .create-account-button {
        background: transparent;
        border: 1px solid #fa8232;
        color: #fa8232;
        border-radius: 8px;
        padding: 10px;
        width: 100%;
        font-weight: 500;
        display: inline-block;
        transition: 0.3s;
    }

    .create-account-button:hover {
        background-color: #fa8232;
        color: #000;
        transform: scale(1.02);
    }

    /* Google Button */
    .btn-danger {
        background-color: #db4437;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-danger:hover {
        background-color: #e35d4c;
        transform: scale(1.02);
    }

    /* Links */
    a {
        color: #fa8232;
        text-decoration: none;
        font-size: 0.95rem;
    }

    a:hover {
        color: #ff9933;
        text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 576px) {
        .login-form {
            padding: 25px 20px;
        }

        .login-form h2 {
            font-size: 1.4rem;
        }

        .form-control {
            font-size: 0.9rem;
            padding: 8px 35px 8px 10px;
        }
    }
