*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body {
     background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}
.header_section{
    background-color: #fff;
}

.floating_label_group{
    position: relative;
    margin-bottom: 2rem;
    align-items: center;
}
.floating_label_group label {
    position: absolute;
    top: 50%;
    left: 45px;
    color: #aaa;
    transform: translateY(-50%);
    transition: 0.2s ease all;
    pointer-events: none;
    font-size: 0.9rem;
    background-color: white;
    padding: 0 5px;
    z-index: 1;
}
.floating_label_group input {
    width: 100%;
    padding-left: 45px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.2s;
    box-sizing: border-box;
    height: 100%;
}
.floating_label_group input:focus{
    border-color: green;
    outline: none;
    box-shadow: none;
}
.floating_label_group input:focus + label,
.floating_label_group input.filled + label {
    top: 0;
    left: 40px;
    font-size: 0.7rem;
    color: green;
    transform: translateY(-50%);
}

.input_icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #aaa;
    z-index: 2;
    width: 20px;
    height: 20px;
    transition: none !important;
    margin-right: 10px !important;
}

/* Password toggle styles */
.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
    color: #aaa;
    transition: color 0.2s ease;
    width: 20px;
    height: 20px;
}

.password-toggle-icon:hover {
    color: #666;
}

.floating_label_group input[type="password"] {
    padding-right: 45px !important;
}




















.user-container{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}
.box{
    background: white;
    display: flex;
    flex-direction: column;
    padding: 25px 25px;
    border-radius: 20px;
    box-shadow: 0 0 128px 0 rgba(0,0,0,0.1),
                0 32px 64px -48px rgba(0,0,0,0.5);
}
.form-box{
    width: 450px;
    margin: 0px 10px;
}
.btn:hover{
    opacity: 0.82;
    color:#fff;
}
.submit{
   width: 100%;

}
.links{
    margin-bottom: 15px;
    
}


/****************Home****************/
/* Modern Dashboard Styles with Google Fonts */
* {
    font-family: 'Inter', sans-serif;
}

/* Enhanced Navigation Styles with Arrow Menu */
.nav {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 70px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(249, 107, 0, 0.2);
    position: sticky;
    top: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0f0c29;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: translateY(-2px);
}

.dashboard-icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    fill: #f96b00;
}

.right-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.right-links a {
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: #302b63 !important;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    position: relative;
}

.right-links a:not(.btn-warning):hover {
    background: rgba(249, 107, 0, 0.1);
    color: #f96b00 !important;
}

.right-links a:not(.btn-warning)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f96b00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.right-links a:not(.btn-warning):hover::after {
    width: 80%;
}

.right-links .btn-warning {
    background: linear-gradient(135deg, #f96b00, #ff8c3a);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(249, 107, 0, 0.2);
    font-family: 'Inter', sans-serif;
    color: white !important;
    text-decoration: none;
    display: inline-block;
}

.right-links .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(249, 107, 0, 0.3);
}

/* Arrow menu toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-toggle .arrow {
    width: 20px;
    height: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.menu-toggle .arrow::before,
.menu-toggle .arrow::after {
    content: '';
    position: absolute;
    background-color: #302b63;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle .arrow.down::before {
    transform: rotate(45deg);
    left: 0;
    top: 6px;
}

.menu-toggle .arrow.down::after {
    transform: rotate(-45deg);
    right: 0;
    top: 6px;
}

.menu-toggle .arrow.up::before {
    transform: rotate(-45deg);
    left: 0;
    top: 12px;
}

.menu-toggle .arrow.up::after {
    transform: rotate(45deg);
    right: 0;
    top: 12px;
}

.menu-toggle.active .arrow.down::before {
    transform: rotate(-45deg);
    top: 12px;
}

.menu-toggle.active .arrow.down::after {
    transform: rotate(45deg);
    top: 12px;
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
    .nav {
        padding: 0 20px;
        height: 60px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .right-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
    }
    
    .right-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .right-links a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    .logo a {
        font-size: 1.2rem;
    }
    
    .dashboard-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
}

@media only screen and (max-width: 480px) {
    .nav {
        padding: 0 15px;
    }
    
    .logo a {
        font-size: 1.1rem;
    }
    
    .dashboard-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
    
    .menu-toggle {
        width: 26px;
        height: 26px;
    }
    
    .menu-toggle .arrow::before,
    .menu-toggle .arrow::after {
        width: 10px;
    }
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    padding: 20px;
    min-height: calc(100vh - 200px);
}

.main-box {
    display: flex;
    flex-direction: column;
    width: 85%;
    max-width: 1200px;
}

.main-box .top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
}

.user-detail-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-detail-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e, #f96b00);
    border-radius: 8px 8px 0 0;
}

.user-detail-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.user-detail-box p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.user-detail-box b {
    color: #f96b00;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/* Add icons to each box */
.user-detail-box:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f96b00' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm6.5 4.5c0 2.5-2.5 4.5-6.5 4.5s-6.5-2-6.5-4.5S8 12 12 12s6.5 2 6.5 4.5Z'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.user-detail-box:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f96b00' viewBox='0 0 24 24'%3E%3Cpath d='M3 8l7.89 5.26a2 2 0 0 0 2.22 0L21 8M5 19h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2Z'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.user-detail-box:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f96b00' viewBox='0 0 24 24'%3E%3Cpath d='M18 4h-1a5 5 0 0 0-5 5v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1V9a5 5 0 0 0-5-5H2m16 16h-1a5 5 0 0 1-5-5v-1a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v1a5 5 0 0 1-5 5H2'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.user-detail-box:nth-child(4)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f96b00' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a8 8 0 0 0-8 8c0 4.3 5.5 11 7.2 13.1a1 1 0 0 0 1.6 0C14.5 21 20 14.3 20 10a8 8 0 0 0-8-8Zm0 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z'/%3E%3C/svg%3E");
    opacity: 0.7;
}

@media only screen and (max-width: 840px) {
    .main-box {
        width: 95%;
    }
    
    .main-box .top, .bottom {
        grid-template-columns: 1fr;
    }
    
    .nav {
        flex-direction: column;
        line-height: 50px;
        padding: 10px;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .right-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .user-detail-box p {
        font-size: 1.1rem;
    }
}

/* Validation Styles */

.validation-message {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.validation-message.show {
    opacity: 1;
    transform: translateY(0);
}

.validation-message.error {
    color: #d93025;
    background-color: #fce8e6;
}

.validation-message.success {
    color: #0f9d58;
    background-color: #e6f4ea;
}

.validation-icon {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Check and Warning Icons using CSS */
.check-icon::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 6px;
    border: solid #0f9d58;
    border-width: 2px 2px 0 0;
    transform: rotate(150deg);
}

.warning-icon::before {
    content: "!";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #d93025;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 14px;
    font-weight: bold;
    font-size: 12px;
}

/* Enhanced input styles for validation states */
.floating_label_group input.error {
    border-color: #d93025;
}

.floating_label_group input.success {
    border-color: #0f9d58;
}

/* Focus styles with theme colors */
.floating_label_group input:focus {
    border-color: #f96b00;
    outline: none;
    box-shadow: 0 0 0 2px rgba(249, 107, 0, 0.2);
}

.floating_label_group input:focus + label {
    color: #f96b00;
}




/* Futuristic Form Borders */
@keyframes borderGlow {
    0% {
        box-shadow: 0 0 5px rgba(249, 107, 0, 0.7),
                    0 0 10px rgba(249, 107, 0, 0.5),
                    0 0 15px rgba(249, 107, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 10px rgba(249, 107, 0, 0.9),
                    0 0 20px rgba(249, 107, 0, 0.6),
                    0 0 30px rgba(249, 107, 0, 0.4),
                    inset 0 0 10px rgba(249, 107, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 5px rgba(249, 107, 0, 0.7),
                    0 0 10px rgba(249, 107, 0, 0.5),
                    0 0 15px rgba(249, 107, 0, 0.3);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.form-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fdfdfd;
    transition: all 0.3s ease;
}



/* Gradient theme border */
.form-box.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e, #302b63);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 22px;
    animation: gradientFlow 4s ease infinite, borderGlow 3s ease-in-out infinite;
}

/* Hover effects */

.form-box.gradient-border:hover::before {
    animation: gradientFlow 3s ease infinite, borderGlow 2s ease-in-out infinite;
}

/* Form content styling */
.form-content {
    position: relative;
    background: #fdfdfd;
    border-radius: 18px;
    padding: 25px;
    z-index: 1;
}

/* Input focus effects with theme colors */
.floating_label_group input:focus {
    border-color: #f96b00;
    box-shadow: 0 0 0 2px rgba(249, 107, 0, 0.2),
                0 0 8px rgba(249, 107, 0, 0.3);
}

/* Button styling with theme colors */
.btn-warning {
    background: linear-gradient(to right, #f96b00, #ff8c3a);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(249, 107, 0, 0.2);
}

.btn-warning:hover {
    background: linear-gradient(to right, #e55d00, #f57f2a);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(249, 107, 0, 0.3);
}

.btn-warning:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(249, 107, 0, 0.2);
}



/* Enhanced Submit Buttons */
.submit-btn-container {
    position: relative;
    margin: 25px 0 15px;
    text-align: center;
}

.submit-btn {
    position: relative;
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    min-width: 180px;
}

/* Login Button - Gradient Theme */
.btn-login {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e) !important;
    color: white;
    box-shadow: 0 6px 15px rgba(48, 43, 99, 0.4);
    width: 100%;
}

/* Register Button - Orange Theme */
.btn-register, .btn-update {
    background: linear-gradient(135deg, #f96b00, #ff8c3a, #f96b00) !important;
    color: white;
    box-shadow: 0 6px 15px rgba(249, 107, 0, 0.4);
    width: 100%;
}

/* Hover Effects */
.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(48, 43, 99, 0.6);
}

.btn-register, .btn-update:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 107, 0, 0.6);
}

/* Active/Click Effects */
.btn-login:active {
    transform: translateY(1px);
    box-shadow: 0 4px 8px rgba(48, 43, 99, 0.3);
}

.btn-register, .btn-update:active {
    transform: translateY(1px);
    box-shadow: 0 4px 8px rgba(249, 107, 0, 0.3);
}

/* Ripple Effect */
.submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.submit-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.8;
    }
    100% {
        transform: scale(30, 30);
        opacity: 0;
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 107, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(249, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 107, 0, 0);
    }
}

@keyframes pulseLogin {
    0% {
        box-shadow: 0 0 0 0 rgba(48, 43, 99, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(48, 43, 99, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(48, 43, 99, 0);
    }
}

/* Add subtle pulse animation on hover */
.btn-register, .btn-update:hover {
    animation: pulse 2s infinite;
}

.btn-login:hover {
    animation: pulseLogin 2s infinite;
}

/* Button Loading State */
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    z-index: 2;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Button Text */
.btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

/* Success Animation */
@keyframes success {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.submit-btn.success {
    animation: success 0.6s ease;
    background: linear-gradient(135deg, #19c880, #2ecc71);
}


/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/* Responsive styles for register form */
@media only screen and (max-width: 768px) {
    .form-box {
        width: 90% !important;
        margin: 0 auto !important;
        padding: 20px 15px !important;
    }
    
    .form-content {
        padding: 20px 15px !important;
    }
    
  .floating_label_group {
        margin-bottom: 1.8rem !important;
        position: relative !important;
    }
    
    .floating_label_group input {
        padding: 16px 15px 16px 45px !important;
        font-size: 16px !important;
        height: 52px !important;
        line-height: normal !important;
    }
    
  .floating_label_group label {
        left: 45px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 0.9rem !important;
        background-color: transparent !important;
        padding: 0 !important;
        z-index: 2 !important;
    }
    .floating_label_group input:focus + label,
    .floating_label_group input.filled + label {
        top: 0 !important;
        left: 40px !important;
        font-size: 0.7rem !important;
        background-color: white !important;
        padding: 0 5px !important;
        transform: translateY(-50%) !important;
    }
    
    .input_icon {
        position: absolute !important;
        top: 50% !important;
        left: 15px !important;
        transform: translateY(-50%) !important;
        width: 20px !important;
        height: 20px !important;
        margin: 0 !important;
        z-index: 3 !important;
        pointer-events: none !important;
    }
    
    .password-toggle {
        right: 8px !important;
        top: 28% !important;
    }
    
    .submit-btn {
        padding: 12px 24px !important;
        font-size: 14px !important;
        min-width: 150px !important;
    }
    
    .links {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
     /* Fix for validation message positioning */
    .validation-message {
        margin-top: -8px !important;
        margin-bottom: 20px !important;
        font-size: 0.7rem !important;
        padding: 4px 8px !important;
        position: relative !important;
        z-index: 1 !important;
    }
}

@media only screen and (max-width: 480px) {
    .form-box {
        width: 95% !important;
        padding: 15px 10px !important;
    }
    
    .form-content {
        padding: 15px 10px !important;
    }
    
  .floating_label_group input {
        padding: 14px 12px 14px 40px !important;
        height: 48px !important;
    }
    .floating_label_group label {
        left: 40px !important;
    }
    
 .input_icon {
        left: 12px !important;
        width: 18px !important;
        height: 18px !important;
    }
     .floating_label_group input:focus + label,
    .floating_label_group input.filled + label {
        left: 35px !important;
    }
     .validation-message {
        margin-top: -10px !important;
        margin-bottom: 18px !important;
        font-size: 0.65rem !important;
    }
    
    .submit-btn {
        padding: 10px 20px !important;
        min-width: 130px !important;
    }
    
    h4.text-secondary {
        font-size: 1.2rem !important;
    }
}


/* Remove any conflicting transforms from other styles */
.floating_label_group input:focus,
.floating_label_group input.filled {
    transform: none !important;
}

/* Ensure proper stacking context */
.floating_label_group {
    isolation: isolate;
}