body {
    padding: 0;
    margin: 0;
    font-family: "poppins", sans-serif;
}

a {
    text-decoration: none;
}

.login {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app {
    height: calc(100vh - 8vh);
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
    width: 40%;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
}

.add-container {
    position: absolute;
    top: 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
    width: 40%;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
}

.container-assessment {
    position: absolute;
    top: 50px;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
    width: 70%;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
}

.form {
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin: 20px;
}

.form-label {
    margin-bottom: 5px;
}

.question-label {
    padding: 10px;
}

.form-control {
    box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px 0 inset;
    border: 1px rgba(0, 0, 0, 0.06) solid;
    padding: 10px;
    border-radius: 5px;
}

.form-select {
    box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px 0 inset;
    border: 1px rgba(0, 0, 0, 0.06) solid;
    padding: 10px;
    border-radius: 5px;
}

.form-button {
    border: none;
    width: 200px;
    height: 35px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split {
    border-top: solid 1px #D5D8DC;
    width: 100%;
}

.radio-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #3498DB;
    color: #fff;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background-color: #5DADE2;
}

.btn-secondary {
    background-color: #808B96;
    color: #fff;
    transition: 0.2s ease;
}

.btn-secondary:hover {
    background-color: #ABB2B9;
}

.btn-container {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}

.navbar {
    width: 100%;
    height: 8vh;
    background-color: #566573;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    margin-left: 50px;
}

.navbar .logo a {
    font-size: 24px;
}

.navbar .link-container {
    margin-right: 50px;
}

.navbar a {
    color: #fff;
    cursor: pointer;
    transition: 0.2s ease;
}

.navbar a:hover {
    color: #D5D8DC;
}

#addSkillButtonContainer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

#addSkillButton {
    margin-right: 20px;
    background-color: #A569BD;
}

#addSkillButton:hover {
    background-color: #BB8FCE;
}