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

/* Centering and styling the form container */
.container {
    width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center; /* Centering text inside the container */
}

/* Form styling */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 40%; /* Make inputs full width */
}

input[type="submit"] {
    padding: 10px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 40%; /* Make submit button full width */
}

input[type="submit"]:hover {
    background-color: #4cae4c;
}

/* Add some space for links */
a {
    margin-top: 20px;
    color: #337ab7;
    text-decoration: none;
}

a:hover {
    color: #23527c;
}
