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

h2 {
    color: #333;
    margin-bottom: 20px;
}

form {
    width: 100%;
}

.input-container {
    margin-bottom: 20px;
    position: relative;
}

input[type="email"],
input[type="password"] {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.error-message {
    color: rgb(235, 27, 27);
    font-size: 14px;
    margin-top: 5px;
    margin-left: 10px;
    text-align: center;
}

button {
    background-color: #2980b9;
    width: 300px;
    font-family: Georgia, 'Times New Roman', Times, serif, sans-serif;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 15px;
}

#signin:disabled {
    background-color: #2980b9;
    cursor: not-allowed;
    opacity: 0.6;
    border: 1px solid #95a5a6;
}

#signin:hover {
    background-color: #3498db;
}

#cloudflare-captcha {
    margin: 20px auto;
    max-width: 300px;
}