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;
        }


        /* Styling for the container */
.register-link {
    /* Center the text within its container */
    text-align: center; 
    /* Add some margin for separation from other form elements */
    margin-top: 1.5rem; 
    /* Make the text slightly lighter or a secondary color for better contrast/readability */
    color: #ccc; 
    font-size: 0.95rem;
}

/* Styling for the anchor tag (optional, but good practice) */
.register-link a {
    text-decoration: none; /* Remove underline from the link */
}

/* Styling for the button inside the anchor tag */
.register-link button {
    /* Primary Color from your request */
    background-color: #ffb546; 
    
    /* Text color for contrast */
    color: #1a1a1a; 
    
    /* Make it a modern, soft rectangle */
    border: none;
    border-radius: 8px; 
    
    /* Padding for a decent size */
    padding: 0.5rem 1rem; 
    
    /* Font style */
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    
    /* Transition for smooth hover effect */
    transition: background-color 0.2s ease, transform 0.2s ease;
    
    /* Add a subtle lift (shadow) to make it stand out as a button */
    box-shadow: 0 4px 10px rgba(255, 181, 70, 0.4);
    
    /* Add a small horizontal space from the preceding text */
    margin-left: 0.5rem; 
}

/* Hover effect */
.register-link button:hover {
    /* Slightly darken the background on hover */
    background-color: #e09d3b; 
    /* A subtle lift/scale effect */
    transform: translateY(-1px); 
    box-shadow: 0 6px 12px rgba(255, 181, 70, 0.6);
}

/* Active/Clicked state effect */
.register-link button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(255, 181, 70, 0.4);
}



        .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 {
            text-align: right;
            margin-bottom: 1.5rem;
        }
        .forgot-password a {
            font-size: 0.9rem;
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .forgot-password a:hover {
            color: #ffb546;
        }
        .form-group.captcha {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .form-group.captcha label {
            margin: 0;
            font-size: 1rem;
        }
        .captcha-image {
            width: 100px;
            height: 50px;
            border: 1px solid #ddd;
            background-color: #f0f0f0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.8rem;
            color: #888;
            border-radius: 4px;
        }
        .login-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;
        }
        .login-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;
            }
        }