@charset "utf-8";
/* CSS Document */

#home {
    min-height: 400px;
    display: flex;
    align-items: center;
	background: rgba(0, 0, 0, 0.8) !important;
}

#home form {
    max-width: 500px;
    margin: 0 auto;
}

button {
	background-color: #BEA015 !important;
	border-color: #BEA015 !important;
	color: white;
	font-weight: 900;
	font-size: 1em;
	padding: .4em;
}

button:hover {
	background-color: #042848 !important;
}

btn-close {
	color: grey !important;
	font-size: .6em !important;
}

.error-message {
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
}

.confirmation-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.confirmation-overlay.active {
    display: flex; /* Show and center when active */
    justify-content: center;
    align-items: center;
}

.confirmation-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
}

.confirmation-box p {
    margin: 0;
    font-size: 1.2em;
    color: #28a745; /* Green for success */
}