/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
	background: url('background.png') no-repeat center center fixed; /* Replace with your image URL */
    background-size: cover;
}

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

/* Logo styling */
.logo img {
    max-width: 100px; /* Adjust size as needed */
    margin-bottom: 20px;
}

/* Header styling */
h1 {
    font-size: 24px;
    margin: 20px 0;
    color: #333;
}

/* Form styling */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    font-weight: bold;
    margin-top: 10px;
    color: #555;
}

input[type="text"],
input[type="password"],
input[type="date"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* CAPTCHA container */
.captcha-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#captchaImage {
    border: 1px solid #ddd;
    border-radius: 4px;
}

button.refresh-captcha {
    margin-left: 10px;
    padding: 8px;
    border: 1px solid #007bff;
    border-radius: 4px;
    background-color: #fff;
    color: #007bff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

button.refresh-captcha img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

button.refresh-captcha:hover {
    background-color: #f0f0f0;
}

button.refresh-captcha:focus {
    outline: none;
}

/* Keyframes for the pop-out animation */
@keyframes popOut {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Apply animation to the container */
.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
    /* Animation properties */
    animation: popOut 0.5s ease-out;
    animation-fill-mode: both; /* Ensure the animation's end state persists */
} 