@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
    font-family: 'Poppins' !important;
}

body {
    margin: 0;
    width: 100vw;
    overflow-x: hidden;
}

section {
    width: 100%;
}

header {
    width: 100%;
    height: 3rem;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    box-sizing: border-box;
    background: white;
    z-index: 100;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
}

.back {
    font-size: 25px;
    font-weight: 700;
}

main {
    width: 100%;
    position: absolute;
    top: 3rem;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 2rem;
    box-sizing: border-box;
}

.profile-picture {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.profile-picture-img {
    width: 5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0AAC07;
}

.add-camera {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #FF6B00;
    display: flex;
    justify-content: center;
    align-items: center;
}

.add-camera img {
    width: 50% !important;
    border: none !important;
    filter: invert(1);
}

.epicNumber {
    text-align: center;
}

.input-div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

input,
select,
textarea {
    width: 60%;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    border-radius: 1rem;
    border: 1px solid #FF6B00;
}

label {
    padding-left: 0.5rem;
    margin-bottom: 0.2rem;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

label::after {
    content: '*';
}

.more-info {
    text-align: right;
    margin-top: 1rem;
}

.more-info a {
    color: #3D3D3D;
}

.submit {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 2rem;
}

.submit button {
    width: 35%;
    background: #FF6B00;
    border-radius: 20px;
    border: none;
    color: white;
    padding: 0.5rem 0rem;
}