.registration-form {
    font-family: var(--Main-font);
    background-color: #000;
    padding: 30px 0;
}
.guidewire-logo img {
    width: 20%;
}
.registration-heading {
    color: #fff;
    font-size: 46px;
    text-align: center;
    padding: 30px 0 0;
    margin-bottom: 0;
}
.registration-subhead {
    color: #9ca3af;
    font-size: 18px;
    text-align: center;
    margin-top: 0;
    padding: 10px 0;
}
.team-details-wrapper {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, transform 0.2s ease;
    border-radius: 6px;
}
.team-details-wrapper:hover, .member-card:hover {
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}
.section-heading {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}
.registration-form-wrapper .form-control, .registration-form-wrapper .form-select, .registration-form-wrapper textarea {
    background-color: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.2s ease;
    padding: 8px 16px;
}
.registration-form-wrapper .form-select {
    background-color: rgba(20, 20, 20, 0.6);
    color: #fff;
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M1.5 5.5l6 6 6-6'/%3e%3c/svg%3e");
}
.registration-form-wrapper input::placeholder {
    color: #fff;
}
.number-of-cards {
    color: rgb(156, 163, 175, 1);
    padding-left: 10px;
    font-size: 14px;
    font-weight: normal !important;
}
/* Member Details Section */
.member-details-head {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}
.add-member-btn {
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3B82F6;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
    padding: 4px 14px;
}
.add-member-btn:hover {
    background-color: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}
.member-card {
    padding: 24px;
    background-color: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, transform 0.2s ease;
}
.member-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.member-card-title, .why-participate-textarea::placeholder {
    color: #fff;
}
.member-card-icons {
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: #3B82F6;
    font-weight: 500;
    transition: all 0.3s ease;
}
.member-card-icons:hover {
    background-color: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}
.remove-member-btn {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
    transition: all 0.3s ease;
}
.remove-member-btn:hover {
    background-color: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}
.icon-holder-block {
    display: flex;
    gap: 10px;
}
.why-participate-textarea {
    width: 100%;
    border-radius: 6px;
}
.char-count {
    color: rgba(107, 114, 128, 1);
}
.submit-registration-btn {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    width: 100%;
    border: none;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
}
.submit-registration-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}
