body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0b0b0b;
}
.signup {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1e1b10;
    padding: 20px;
    box-shadow: 0 0 10px rgba(161, 129, 1, 0.1);
    width: 100%;
    max-width: 500px;
}
.signup input[type="text"], 
.signup input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #d4caa6;
    border: 1px solid #f5c022;
    box-sizing: border-box;
}

.signup button {
    width: 100%;
    padding: 10px;
    background-color: rgb(195, 189, 6);
    color: rgb(6, 6, 6);
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.signup .section-box {
    border: 1px solid #f7e49e;
    padding: 15px;
    margin-bottom: 20px;
}
.signup .section-box select{
    width: 100%;
    background-color: #d4caa6;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #f5c022;
    box-sizing: border-box;
}
.signup a {
    display: block;
    text-align: center;
    margin-top: 10px;
    text-decoration: none;
    color: #b1b0ac;
}

.errorlist {
    color: rgb(249, 47, 47);
    list-style-type: none; /* This removes the bullet points */
    padding-left: 0; /* This removes the default padding */
    margin: 0;
    text-align:center;
}

.page-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: #b08c07;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-subtitle {
    text-align: center;
    margin-bottom: 20px;
    color: #928e87;
}
.signup .section-box .section-name{
    color: #b08c07;
    font-weight: bold;
    text-align: center;
}


/* Responsive breakpoints */
@media only screen and (max-width: 600px) {

    .signup {
        width: 90%; /* Take up most of the screen width */
        padding: 15px;
    }

    .signup input[type="text"], 
    .signup input[type="password"] {
        font-size: 16px; /* Increase font size for better readability */
        padding: 12px 10px; /* Increase padding for easier touch */
    }

    .signup button {
        font-size: 16px; /* Increase font size for better readability */
        padding: 12px 10px; /* Increase padding for easier touch */
    }

    .page-title {
        font-size: 1.8em;
    }

    .page-subtitle {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    .signup a {
        font-size: 14px; /* Adjust font size for links */
        margin-top: 15px;
        padding: 5px 0; /* Add some padding to increase touch area */
    }

    .signup .section-box {
        padding: 10px;
    }
}