/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

.container { 
    display: flex; 
    flex-wrap: wrap;
    max-width: 1200px; 
    margin: 20px auto; 
}

/* Form Container */
.form-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Sidebar styling */



.login-form { 
    background-color: #fff; 
    padding: 30px; 
    border-radius: 8px; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 
    width: 100%; 
    max-width: 400px; 
    text-align: center; 
    border: 1px solid #ddd; 
}

.login-form h2 { 
    margin-bottom: 20px; 
    font-size: 1.8em; 
    color: #333; 
}

.login-form label { 
    text-align: left; 
    display: block; 
    margin: 10px 0 5px; 
    font-weight: bold; 
}

.login-form input[type="email"], 
.login-form input[type="password"], 
.login-form input[type="submit"] { 
    width: 100%; 
    padding: 10px; 
    margin: 5px 0 15px; 
    font-size: 1em; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
}

.login-form input[type="submit"] { 
    background-color: #28a745; 
    color: #fff; 
    font-weight: bold; 
    cursor: pointer; 
}

.login-form input[type="submit"]:hover { 
    background-color: #218838; 
}

.error { 
    color: red; 
    font-size: 0.9em; 
    margin-top: -10px; 
}/* Captcha Image Container Styling */
.captcha-container {
    text-align: center; /* Center the image horizontally */
    margin-bottom: 20px; /* Space between the image and the form */
}

/* Styling the Captcha Image */
.captcha-container img {
    width: 60px; /* Size of the image, similar to a coin */
    height: 60px; /* Equal width and height for a perfect circle */
    border-radius: 50%; /* Makes the image round like a coin */
    object-fit: cover; /* Ensures the image fills the circle without distortion */
    border: 3px solid #5a009d; /* Adds a border with a distinct color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Adds a soft shadow for elegance */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover Effect to Zoom and Change Shadow */
.captcha-container img:hover {
    transform: scale(1.1); /* Slightly zoom in on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
    cursor: pointer; /* Change cursor to pointer to indicate interactivity */
}


/* Footer styling */
.footer { 
    background-color: #1a1a1a; 
    color: #d3d3d3; 
    font-size: 0.9em; 
    text-align: center; 
    padding: 20px; 
    margin-top: 20px; 
}

.footer a { 
    color: #ffc107; 
    text-decoration: none; 
}

.footer a:hover { 
    text-decoration: underline; 
}