/*
 * art_gallery.css
 */
 
/* Permanent CSS styles for the alert */
.alert 
{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    border: 1px solid black;
    border-radius: 5px;
    background-color: lightcoral; /* Permanent background color */
    color: white; /* Permanent text color */
}

body {
    background-image: url('../uploads/1692108600_PHOTO-2023-08-15-10-50-35-transformed.jpeg');
    background-size: cover;
}
.container {
    width: 400px;
    /* max-width: 400px; */
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
h2 {
    text-align: center;
}
form {
    margin-top: 20px;
}
label, input {
    display: block;
    margin-bottom: 10px;
}
.error {
    color: red;
}
/* Adjust checkbox alignment */
.form-check {
    display: flex;
    align-items: center;
}

/* Style the checkbox input */
.form-check-input {
    margin-right: 10px;
}
/* Add a line to separate the submit button */
button[type="submit"] {
    display: block;
    margin-top: 20px;
    border: 1px solid #ccc;
    padding: 10px 20px;
    background-color: #fff;
}
/* Container for password fields */
.password-container {
    display: flex;
    justify-content: space-between;
}
/* Style individual password fields */
#password, #confirm_password {
    flex: 1;
    margin-right: 10px;
}

/* Define the spinner animation */
@keyframes spin 
{
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Style the overlay */
.overlay 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    display: none; /* Initially hide the overlay */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure the overlay is on top of everything */
}
.overlay .spinner 
{
    /* Your spinner styles go here */
    border: 4px solid rgba(255, 255, 255, 0.3); /* Example border style */
    border-top: 4px solid #3498db; /* Example border color for animation */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite; /* Example spin animation */
}
.side-by-side 
{
    display: inline-block;
}
