/* 1. PAGINA-LAYOUT */
body {
    background: linear-gradient(90deg, #031528, #058dff 83%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - max(10vh, 70px) * 2);
    margin-top: max(10vh, 70px);
    margin-bottom: max(10vh, 70px);
    overflow-y: auto;
    color: black;
}

.container {
    background-color: #ffffff;
    width: 50%;
    height: auto;
    padding: 15px;
    margin: 15px auto;
    border-radius: 3%;
}

/* 2. TYPOGRAFIE */
h1 {
    color: #058fff;
}

/* 3. FORMULIER */
form label {
    display: block;
    margin: 8px 0 2px 0;
    color: #031528;
    font-weight: 500;
}

form span {
    color: #031528;
}

form input,
form select,
form textarea {
    margin: 5px 0;
    padding: 8px 10px;
    background-color: #ffffff;
    border: 1px solid #058fff;
    border-radius: 4px;
    color: #031528;
    width: 100%;
}

form input {
    margin-top: 0;
    margin-bottom: 0;
}

form select {
    cursor: pointer;
}

/* 4. CHECKBOX & RADIO */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"] {
    width: auto;
    margin: 0;
    accent-color: #058fff;
}

.checkbox-group label,
.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* 5. PRIVACY TOOLTIP */
.prvcy-stmt-trigger {
    position: relative;
    cursor: pointer;
}

.prvcy-stmt-text {
    display: none;
    position: absolute;
    z-index: 1;
    margin-top: 5px;
    padding: 8px 12px;
    max-width: 300px;
    background-color: #333;
    border-radius: 4px;
    color: #ffffff;
    font-size: 0.85em;
    font-weight: normal;
    text-align: left;
}

.prvcy-stmt-trigger:hover .prvcy-stmt-text {
    display: block;
}
.privacy-statement label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.privacy-statement input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 3px;
    accent-color: #058fff;
    flex-shrink: 0;
}
.btn {
    background-color: #058dff;
}