/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('blurry.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label, input {
    margin-bottom: 10px;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

a {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


a.inline-link {
    display: inline; /* Apply inline display only to this specific link */
    text-align: center;
    margin-top: 15px;
    color: #007bff;
    text-decoration: none;
}


/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    .container {
        max-width: 80%;
    }
}

/* Add a red border to fields with errors */
.error {
    border: 1px solid red;
}

.error-message {
    background-color: #ff6347; /* Red background color */
    color: white; /* Text color */
    padding: 10px; /* Padding around the message */
    margin: 10px 0; /* Margin to separate it from other content */
    border-radius: 5px; /* Rounded corners for a box-like appearance */
}

.success-message {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

