* {
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    line-height: 1.5;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        "Open Sans",
        "Helvetica Neue",
        sans-serif;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

/* CV */

.cv {
    max-width: 800px;
    min-height: 100px;
    margin: 30px auto;
    padding: 45px 70px;
    background-color: white;
}

.cv-heading {
    text-align: center;
    margin-bottom: 30px;
}

.cv-heading h1 {
    font-size: 26px;
}

.cv-heading p {
    font-size: 15px;
}

.cv-heading-2 {
    border-bottom: 2px solid black;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.cv-heading-3 {
    text-align: justify;
    margin-top: 20px;
}

.full-width {
    display: inline-block;
    width: 100%;
}

.cv-heading-3 span {
    display: inline-block;
}

.cv-list {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 10px;
}

.cv-list p {
    margin: 0;
}

.cv-list li {
    margin-bottom: 5px;
}

.normal {
    font-weight: normal;
}

/* Menu */

.menu {
    background-color: #455bc4;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0;
}

.menu li {
    display: inline-block;
}

.menu li a {
    text-decoration: none;
    color: white;
    display: inline-block;
    padding: 20px 30px;
    font-size: 18px;
}

.menu .active a {
    background: white;
    color: black;
}

/* FORM */
form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
    color: #2d3436;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color:#636e72;
    font-size: 14px;
}

.checkbox{
    margin-right: 15px;
    font-weight: 600;
    cursor: pointer;
}

.input-field {
    width: 100%;
    border: 1px solid gray;
    padding: 12px 15px;
    border-radius: 8px;
    outline: none;
}

.gender-label {
    display: inline-block;
}

.avatar-img{
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
}

.btn{
    width: 100%;
    padding: 14px;
    background-color: #0984e3;
    color:white;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor:pointer;
    margin-top: 10px;
}