.title {
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.registration-form {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.registration-form .form-control {
    border-radius: 5px;
    padding: 10px;
    height: 48px;
    background-color: white;
    border: 2px solid black;
    font-size: 18px;
}

.registration-form .form-control:focus {
    border: 1px solid #c7c7c7;
    box-shadow: 0 0 5px #c7c7c7;
}

.btn-custom {
    background-color: #7d00b4;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.form-group.position-relative {
    position: relative;
}

#address_results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    background: #fff;
    display: none;
}

#address_results.show {
    display: block;
}

.dropdown-item {
    padding: 10px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.registration-form .accept-gdpr {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.registration-form .accept-gdpr > input {
    margin: 0;
}

textarea[name="comments"] {
    height: 120px !important;
}
