* {
    box-sizing: border-box;
}

#dashboard {
    display: flex;
    flex-direction: column;
}

#dashboard .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

#dashboard .contentwrap {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 40px;
}

#dashboard .lefthandnav {
    height: 100%;
    min-width: 190px;
}

div#modulelist {
    display: flex;
    flex-wrap: wrap;
    width: 540px;
}

#modulelist h2 {
    font-size: 12px;
    text-transform: uppercase;
    width: 100%;
    font-weight: normal;
    letter-spacing: 2px;
    margin: 30px 0 10px;
}

#modulelist h2:nth-of-type(1) {
    margin-top: 15px;
}

div#nomodules {
    display: none;
}

button#requestaccess {
    margin-top: 20px;
    padding: 10px 20px;
    border: 0;
    border-radius: 5px;
    background: #289928;
    color: #ffffff;
    font-size: 18px;
}

.modulerow {
    flex: 0 0 100%;
    display: flex;
    justify-content: start;
    gap: 40px;
    align-items: center;
}

.moduleinput {
    flex: 0 0 150px;
    text-align: center;
}

.modulename, .moduleinfo {
    flex: 0 0 350px;
}

p.error {
    color: red;
    font-weight: bold;
}