body {
    background-color: #d4a752;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 60%;
    margin-left: 300px;
}

.register-container {
    display: flex;
    flex-direction: column; /* Ensures that elements inside the container are stacked vertically */
    background-color: rgba(255, 255, 255, 0.918);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

h2 { 
    margin-bottom: 20px;
    text-align: center;
    font-size: 38px;
    color: #b48121;
}

.register-form-container form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the form elements horizontally */
}

.form-group {
    width: 80%; /* Takes full width of the container */
max-width: 600px; /* Optional: set a max-width for better control */
    margin-bottom: 15px;
}

.register-form-container input[type="text"],
.register-form-container input[type="password"],
.register-form-container input[type="email"] {
    width: 80%; /* Takes full width of the container */
    padding: 15px;
    border: 1px solid #a87811;
    border-radius: 4px;
    font-size: 21px;
}

.btn {
    display: block;
    width: 50%;
    max-width: 250px; /* Optional: set a max-width for better control */
    margin: 20px auto;
    padding: 15px;
    background-color: #a57712;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn:hover {
    background-color: #c2a23b;
}

#img {
    width: 100%;
    height: auto;
}

#img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Add some space between the image and form */
}
