* {
    padding: 0px;
    margin: 0px;
    font-family: 'Arial';
}
.input {
    border-radius: 0.5rem;
    padding: 1rem 0.75rem;
    width: 400px;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #9c9c9c60;
    outline: 2px solid #707070;
}
.input:focus {
    outline: 2px solid #58bc82;
}
.button {
    padding: 1rem 0.75rem;
    width: calc(fit-content + 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 3rem;
    background-color: #58bc82;
    color: #303030;
    border: none;
    cursor: pointer;
    transition: all 300ms;
    font-weight: 600;
    font-size: 0.9rem;
    outline: none;
}
.button:hover {
    background-color: #707070;
    color: #efefef;
}
.error {
    width: 320px;
    padding: 12px;
    margin: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background: #EF665B;
    border-radius: 8px;
    box-shadow: 0px 0px 5px -3px #111;
}
.error_icon {
    width: 20px;
    height: 20px;
    transform: translateY(-2px);
    margin-right: 8px;
}
.error_icon path {
    fill: #fff;
}
.error_title {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}
#header {
    width: 100vw; 
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    box-sizing: border-box;
    background: linear-gradient(45deg, #54a676, #59e895)
}
#header #logo {
    height: 70px;
}
#header #right {
    display: flex;
    flex-direction: row;
    cursor: pointer;
}
#header #right p {
    font-size: 15px;
    color: #202020;
}
#header #right #profil {
    width: 50px;
    height: 50px;
    margin-left: 10px;
}
.imageInput {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.imageInput .preview {
    width: 100%;
    height: 100%;
    z-index: 1;
}
.imageInput .filter {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
}
.imageInput .filter .img {
    width: 30px;
    height: 30px;
}
.imageInput .inputFile {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 3;
}
#popUpBackground {
    width: 100vw;
    height: 100vh;
    background: #000000af;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
}
#popUpBackground .popUp {
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    display: none;
    align-items: center;
    flex-direction: column;
}
#popUpBackground.open,
#popUpBackground .popUp.active {
    display: flex;
}