/* Service Provider Registration Specific Styles */

#register-root {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
}

.registration-card {
    transition: all 0.3s ease;
}

.bg-blue-theme {
    background-color: #2b4c8c;
    /* Slightly darker blue as seen in screenshot */
}

.bg-white-transparent {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
}

.bg-white-transparent::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.bg-white-transparent:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    border: none;
}

.signup-btn {
    color: #2b4c8c !important;
    background-color: #e9ecef;
    border: none;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.signup-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.x-small {
    font-size: 10px;
}

.form-label {
    font-size: 14px;
}

.notification-bar {
    background-color: #4a6fac;
}

.marquee-text {
    font-size: 14px;
    white-space: nowrap;
}