body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

.container {
    position: relative; /* Set to relative to position the link inside it */
    max-width: 450px; /* Increase container width to make input fields longer */
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Back to Home link styling */
.back-link {
    position: absolute;
    top: 20px; /* Adjusted positioning for spacing */
    left: 20px;
    color: #fa7416; /* Changed to orange */
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    color: #cc8400; /* Darker orange for hover effect */
}

h1 {
    text-align: center; /* Center-align header */
    color: black;
    font-family: 'Courier New', Courier, monospace;
    margin-top: 35px; /* Increased margin-top to create space below the link */
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

button {
    padding: 12px;
    background-color: #fa7416; /* Changed to orange */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px; /* Increased font size */
    margin-top: 15px; /* Added gap between input fields and buttons */
}

button:hover {
    background-color: #cc8400; /* Darker orange for hover */
}

.error {
    color: red;
    text-align: center;
}

.login-link {
    display: inline-block;
    padding: 12px;
    background-color: #fa7416; /* Changed to orange */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: 15px; /* Added spacing between buttons */
}

.login-link:hover {
    background-color: #cc8400; /* Darker orange for hover */
}