.registration-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 60vh;
    border-radius: 10px;
    background-color: #f0f0f0;

    background-image: url("../images/registration.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.registration-form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    width: 50%; /* Променено на 60% */
    max-width: 800px; /* Можете да регулирате тази стойност */
    padding: 0 20px;
}

.registration-form input[type="text"] {
    width: 100%; /* Ще заемат 100% от ширината на формата, която вече е 60% */
    padding: 10px;
    box-sizing: border-box;
}

/* Останалите стилове остават същите */
.registration-header h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}

.registration-header p {
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

.registration-box {
    display: flex;
    flex-direction: column;
}

.registration-row {
    margin-top: 20px;
}

.registration-label {
    font-size: 14px;
    color: #fff;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
    font-weight: bold;
    margin-bottom: 8px;
    text-align: left;
    display: inline-block;
    width: 100%;
}

.registration-row input[type="submit"] {
    background-color: #0C4DA1;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 20px;
}

.registration-row input[type="submit"]:hover {
    background-color: #015a80;
}

.registration-dropdown-container {
    position: relative;
    width: 100%;
}

.registration-dropdown {
    width: 100%;
    max-width: 700px;
    padding: 10px;
    border: 1px solid #666;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    height: 40px;
    box-sizing: border-box;
    font-family: inherit;
    color: #333;
    margin: 0;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.registration-dropdown-button {
    display: none;
}

.registration-dropdown-button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background-color: #0C4DA1;
    color: white;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    font-size: 16px;
    z-index: 2;
}

.g-recaptcha {
    transform: scale(1);
    transform-origin: 0 0;
    width: 100%;
    max-width: 100%;
}

