/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body, html {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f5;
    display: block;
    justify-content: center;
    align-items: center;
    height: 100%;
	width: 100%;
    margin: 0;
}
.form-container {
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50%;
	min-width: 450px;
    padding: 20px;
}


form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
	min-width: 450px;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #0056b3;
}

label {
    display: block;
    margin-bottom: 5px;
}
h2 {
    text-align: center;
    color: #333; /* A dark color for the title text */
    margin-bottom: 20px; /* Adds some space between the title and the form */
    font-size: 24px; /* Adjust font size as needed */
}


.signup-success {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.signup-success h1 {
    color: #4CAF50;
}

.signup-success p {
    color: #333;
    margin: 20px 0;
}

.home-button {
    display: inline-block;
    background-color: #4CAF50;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.home-button:hover {
    background-color: #45a049;
}


/* Styling for the signup link */
.signup-link {
    text-align: center;
    margin-top: 20px;
}

/* Existing styles */

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .form-container, form {
        min-width: auto; /* Allows the form to adjust based on the screen size */
        width: 85%; /* Makes the form width relative to the screen size */
        padding: 15px; /* Adjusts padding for smaller screens */
    }

    input, button {
        margin: 8px 0; /* Reduces margin for a tighter layout */
    }

    h2 {
        font-size: 20px; /* Adjusts title font size for smaller screens */
    }

    body, html {
        height: auto; /* Allows the body to expand vertically on smaller screens */
    }
}





.dashboard-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.dashboard-links a {
    display: inline-block;
    margin: 10px;
    padding: 10px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.dashboard-links a:hover {
    background-color: #0056b3;
}

.dashboard-content {
    margin-top: 20px;
}



