body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f2f5;
        }
        .container {
            display: flex;
            min-height: 100vh;
        }
        .left-panel {
            flex: 1;
            padding: 4rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #fff;
        }
        .right-panel {
            flex: 1;
            background-color: #e6e8eb;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }
        .logo-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 500px;
            margin-bottom: 2rem;
        }
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
        }
        .logo-text span {
            color: #ffb546;
        }
        .logo img{
            width: 100px;
            height: 100px;
            object-fit: cover;
        }
        .login-link button {
            background-color: #ffb546;
            color: #fff;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .login-link button:hover {
            background-color: #e09e3e;
        }
        .form-content {
            width: 100%;
            max-width: 500px;
        }
        h1 {
            font-size: 22px;
            font-weight: 700;
            color: #333;
            margin-bottom: 2rem;
        }
        .form-row {
            margin-bottom: 1.5rem;
        }
        .form-group {
            position: relative;
        }
        .form-group label {
            display: block;
            font-size: 1rem;
            color: #555;
            margin-bottom: 0.5rem;
        }
        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            box-sizing: border-box;
            background-color: #f8f8f8;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus {
            outline: none;
            border-color: #ffb546;
        }
        .forgot-password-button {
            width: 100%;
            padding: 10px;
            background-color: #ffb546;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .forgot-password-button:hover {
            background-color: #e09e3e;
        }
        .footer-text {
            font-size: 0.8rem;
            color: #888;
            text-align: center;
            margin-top: 2rem;
        }
        .image-container {
            width: 100%;
            max-width: 600px;
        }
        .image-container img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            .left-panel {
                flex: none;
                width: 100%;
                padding: 2rem 1rem;
            }
            .right-panel {
                display: none;
            }
        }