* {
    box-sizing: border-box;
    font-family: 'Avenir Next', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f9f9f9;
    padding: 2rem;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#desc {
    margin: 0 auto;
    margin-bottom: 2rem;
    max-width: 40rem;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

#desc:hover {
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

#submit_form {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 40rem;
    transition: all 0.3s ease-in-out;
}

#submit_form:hover {
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

label {
    font-size: 1rem;
    color: #333333;
    display: block;
    margin-bottom: 0.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

input:hover, select:hover, textarea:hover {
    border-color: #999999;
    box-shadow: inset 0px 3px 8px rgba(0, 0, 0, 0.1);
}

input:focus, select:focus, textarea:focus {
    border-color: #333333;
    outline: none;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

#email_input, #bug_severity {
    width: 100%;
}

input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

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

#minor, #moderate, #major, #game_breaking {
    margin-bottom: 10px;
    font-weight: bold;
}

#minor {
    color: green;
}

#moderate {
    color: orange;
}

#major {
    color: red;
}

#game_breaking {
    color: darkred;
}

h1 {
    font-size: 2rem;
    color: #333333;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 1rem;
}

p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px; /* Set a max width */
    margin: 0 auto;
}

#desc, #submit_form {
    flex: 1;
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#submit_form {
    max-width: 500px;
}
