/* Start custom CSS for shortcode, class: .elementor-element-043f384 */.checkbox-group{
        height: 200px;
    overflow: auto;
    border: 1px solid black;
    padding: 0px 20px;
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-a26089f *//* Page background */
.signup-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa, #e0f7fa);
    padding: 30px;
}

/* Card container */
.signup-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    width: 100%;
    max-width: 650px;
    box-sizing: border-box;
}

/* Title */
.form-title {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-size: 28px;
}

/* Labels */
.signup-card label {
    display: block;
    margin: 12px 0 5px;
    font-weight: 600;
    color: #444;
}

/* Inputs & Selects */
.signup-card input[type="text"],
.signup-card input[type="email"],
.signup-card input[type="url"],
.signup-card input[type="password"],
.signup-card input[type="file"],
.signup-card select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    transition: border 0.3s;
}

.signup-card input:focus,
.signup-card select:focus {
    border-color: #1f493d;
    outline: none;
}

/* Radio buttons group */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.radio-group label {
    font-weight: 500;
    color: #555;
}

/* File inputs in 2-column layout */
.file-upload-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.file-upload {
    flex: 1;
    min-width: 45%;
}

/* Gradient login-style button */
.signup-card button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #1f493d, #1F493D, #002A1E, #002A1E);
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 20px;
}

.signup-card button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(31, 73, 61, 0.4);
}

/* Success or error message */
#signup-message {
    margin-top: 20px;
    text-align: center;
}/* End custom CSS */