body {
    font-family: Inter, sans-serif;
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
    color: #6e0a26;
}

.container {
    display: flex;
    width: 100%;
    flex-direction: column;
    font-size: 20px;
}

.login-form {
    width: 50%;
    min-width: fit-content;
    border: 2px solid rgb(9, 68, 11);
    padding: 10px;
    background-color: #fafafb;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: start;
    box-shadow: #93b7b9 -5px -5px;
}

.code-gen-board {
    width: 30%;
    min-width: fit-content;
    border: 2px solid rgb(9, 68, 11);
    padding: 10px;
    background-color: #fafafb;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: start;
    box-shadow: #93b7b9 -5px 5px;
    margin-top: 50px;
}

#role-select {
    width: fit-content;
    color: #083c1f;
    background-color: #eccbd4;
}

#code-gen-button {
    font-weight: bolder;
    font-size: large;
    padding-left: 7px;
    padding-right: 7px;
    width: fit-content;
    background-color: #5d2b78;
    color: #d6d1ee;
    min-width: fit-content;
    max-width: 12em;
    cursor: pointer;
    border-radius: 6px;

}

.login-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 20em;
}

#login-button {
    font-weight: bolder;
    font-size: large;
    width: 35%;
    background-color: #857090;
    color: #d6d1ee;
    min-width: fit-content;
    max-width: 12em;
    cursor: pointer;
    border-radius: 6px;
}

#login-button:hover {
    background-color: #6a5d71;
}

.dashboard {
    width: 50%;
    min-width: fit-content;
    border: 2px solid rgb(9, 68, 11);
    padding: 10px;
    background-color: #fafafb;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: start;
    box-shadow: #ea7e71 -5px 5px;
}

#logout-button {
    font-weight: bolder;
    font-size: large;
    width: 35%;
    background-color: #eb9752;
    color: #100839;
    min-width: fit-content;
    max-width: 12em;
    cursor: pointer;
    border-radius: 6px;
}

#logout-button:hover {
    background-color: #a76229;
}