body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    overflow: auto; /* Enable scrolling if content overflows */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure body takes full height */
}
.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    margin: 4rem 1rem; /* Increase top and bottom margin for more space */
}
h2 {
    margin-top: 0;
    text-align: center;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="file"],
.form-group select,
.form-group input[type="password"] {
    width: calc(100% - 140px); /* Adjust width to accommodate space for button */
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
}
.form-group .address-container {
    display: flex;
    align-items: center;
}
.address-1 {
    background-color:beige;
}
.form-group .address-container input[type="text"] {
    width: 60%;
    margin-right: 10px; /* Space between input and button */
}
.form-group .address-container button {
    width: 30%; /* Fixed width for the button */
    padding: 0.8rem;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    height: 100%; /* Match the height of the input */
}
.form-group .address-container button:hover {
    background-color: #0056b3;
}
.form-group button {
    width: 100%;
    padding: 0.8rem;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}
.form-group button:hover {
    background-color: #0056b3;
}
.links {
    text-align: center;
    margin-top: 1rem;
}
.links a {
    color: #007BFF;
    text-decoration: none;
}
.links a:hover {
    text-decoration: underline;
}