﻿body {
    font-family: 'Gotham','Arial', sans-serif; /* Or any modern, clean font */
    background-color: #f4f4f4; /* Light background for contrast */
    color: #333; /* Dark text for readability */
}

html {
    background-color: #f4f4f4; /* Light background for contrast */
}

.register {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: antiquewhite;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

    .register h1 {
        color: #f7941e; /* Orange */
        margin-bottom: 10px;
    }

    .register h2 {
        color: #f7941e; /* Orange */
        font-size: medium;
        text-align: center;
        margin-bottom: 30px;
    }

.my-label-font {
    font-family: var(--rz-text-font-family);
    font-size: var(--rz-text-font-size);
    font-weight: var(--rz-text-font-weight);
}

.worker-card {
    margin-bottom: 10px;
}


.OneContactButton {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    color: white;
    background-image: linear-gradient(to right, #ff4b5c, #FFBE28);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    margin-top: 4px;
}

    .OneContactButton:hover {
        background-image: linear-gradient(to left, #ff4b5c, #FFBE28);
    }

.register .language-switcher { /* Assuming your LanguageSwitcher has a class */
    margin-bottom: 20px; /* Add space below the LanguageSwitcher */
}
@media (max-width: 600px) {
    .step-text {
        display: none; /* Hide text */
    }

    .step-number {
        display: inline; /* Show step numbers */
    }
}

@media (min-width: 601px) {
    .step-text {
        display: inline; /* Show text */
    }

    .step-number {
        display: none; /* Hide step numbers */
    }
}

