/* body {
    font-family: Arial, sans-serif;
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0; */
/* } */

body {
    background: url('../assets/img/DSCF7528.JPG') no-repeat center center fixed;
    background-size: cover; /* Ensure the background image covers the viewport */
    height: auto; /* Allow the height to be determined by content */
    position: relative;
    background-attachment: scroll; 
    background-color: black;
    display: flex;
    align-items: center;
    color: white;
    padding: 0 !important;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.336) 12%, rgba(255, 255, 255, 0) 25%); */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.336) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.8; /* Adjust for desired darkness */
    transition: opacity 0.5s ease; /* Transition effect */
    z-index: 1; /* Make sure the overlay is above the background but below content */
}

.login-container {
    /* margin: auto 0; */
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative; /* Position relative to allow layering */
    z-index: 2;
    border-radius: 8px;
    padding: 40px;
    width: 90%; /* This sets the width to 90% of the viewport */
    max-width: 400px; /* Maximum width for larger screens */
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    position: relative; /* Position relative to allow layering */
    z-index: 2;
    border-radius: 8px;
}

header h1 {
    color: white !important;
    font-style: italic;
    font-weight: 300;
    font-size: 2rem;
}



h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

label {
    font-weight: bold;
    color: var(--Teal); /* Similar color to Tailwind's */
    align-self: flex-start; /* Aligns label to the left */
    margin-bottom: 4px;
}

input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #e9ecef; /* Similar to bg-gray-200 */
    margin-bottom: 16px; /* Adds spacing between fields */
}

input:focus {
    border-color: #646cff; /* Color when input is focused */
}

button {
    background-color: var(--Teal); /* Similar to bg-blue-800 */
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:disabled {
    background-color: #b0c4de; /* Light blue for disabled */
}

.signup-prompt {
    margin-top: 20px;
    text-align: center;
    color: #6c757d; /* Gray color for text */
}

.signup-prompt a {
    color: var(--Teal); /* Similar to link color */
    text-decoration: none; /* Remove underline */
}

.signup-prompt a:hover {
    text-decoration: underline; /* Underline on hover */
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* Light background */
}

.Login {
    margin: auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

input {
    border: 2px solid #ccc;
    border-radius: 4px;
    padding: 10px;
}

input:focus {
    border-color: #646cff;
}

button {
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:disabled {
    background-color: #b0c4de; /* Light blue for disabled */
}
