body,html {
    font-family: "sirenia",sans-serif; 
}

header,main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    margin-top: 50px;
}

.main-title {
    color: #004039;
    font-size: 72px;
    line-height: 66px;
    text-align: center;
    margin-top: 35px;
}

.category-container {
    display: flex;
    max-width: 800px;
    width: 100%;
    justify-content: space-between;
    margin-top: 20px;
}

.category {
    color: #004039;
    font-size: 20px;
    font-weight: bold;
}

main {
    margin-top: 100px;
}

form {
    max-width: 810px;
    width: 810px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-top {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin-top: 70px;
}

.information {
    flex: 0 0 65%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.photo {
    position: relative;
    width: 250px; 
    height: 250px; 
    border: 1px solid #707070;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo input[type="file"] {
    display: none;
}

.photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.photo::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background-color: #CDD9AE;
    border-radius: 50%;
    opacity: var(--circle-opacity, 1); 
    z-index: 1;
    transition: opacity 0.3s ease;
}
.form-title {
    color: #004039;
    text-align: center;
    font-size: 34px;
    line-height: 45px;
    max-width: 455px;
}

input, label {
    display:block;
}

label, .label {
    color: #004039;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 5px;
}

input {
    border: 1px solid #707070;
    height: 48px;
    font-family: "sirenia",sans-serif; 
    color: #004039;
}

input#photo::file-selector-button {
    display: none;
    visibility: hidden;
}


.form-education {
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-education input.file-input {
    display: none;
}

label.input-wrapper {
    height: 52px;
    border: 1px solid #707070;
    padding-left: 10px;
    display: flex;
    align-items: center;
}


.file-upload {
    position: relative;
    width: 100%;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.file-button {
    position: absolute;
    right: 0;
    bottom: -20px;
    border: none;
    background-color: transparent;
    color: #004039;
    cursor: pointer;
}

.form-sociammedia,.form-about {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.akceptacja {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.akceptacja label {
    font-size: 14px;
    line-height: normal;
    color: #004039;
    margin-bottom: 0;
}

.akceptacja input {
    width: 20px;
    height: 20px;
}

.form-button {
    margin-top: 70px;
}

.submit-button {
    width: 220px;
    height: 75px;
    background-color: #94C022;
    border-radius: 84px;
    color: white;
    font-size: 27px;
    border: none;
    font-family: "sirenia",sans-serif; 
}

.w-100 {
    width: 100%;
}

.relative {
    position: relative;
}

footer {
    margin-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.regulamin-container {
    margin-top: 30px;
}

.regulamin {
    color: #94C022;
}

.required-fields {
    font-size: 12px;
    color: gray;
    text-align: left;
}