 body {
            font-family: "Inter", sans-serif;
            background-color: #f0f2f5; 
            background-image: url('./images/home.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            margin: 0;
            color: #374151;
        }
        .navbar {
            background-color: rgba(30, 41, 59, 0.9); 
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            font-size: 1.75rem; 
            font-weight: 800; 
            color: #ffffff !important;
            letter-spacing: -0.025em;
            transition: color 0.2s;
        }
        .navbar-brand:hover {
            color: #cbd5e1 !important; 
        }
        .nav-link {
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            color: #e2e8f0 ; 
            transition: background-color 0.2s, color 0.2s;
            font-weight: 500;
        }
        .nav-link:hover {
            background-color: #2563eb ;
            color: #ffffff ;
        }
        
        .form-container {
            flex-grow: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }
        .form-card {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 2.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
            width: 100%;
            max-width: 450px; 
        }
        .form-input, .form-select {
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 1rem;
            border: 1px solid #d1d5db; 
            border-radius: 0.5rem; 
            font-size: 1rem;
            color: #374151; 
            box-sizing: border-box; 
            background-color: #f9fafb; 
        }
        .form-input:focus, .form-select:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); 
        }
     .form-button {
            width: 100%;
            padding: 0.75rem;
            background-color: #3b82f6; 
            color: #ffffff;
            border-radius: 0.5rem; 
            font-size: 1.125rem; 
          
            cursor: pointer;
            transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
          
        }
        .form-button:hover {
            background-color: #2563eb;
            transform: translateY(-1px);
        }
        h1 {
            color: black; 
            font-size: 2rem;
            font-weight: 700; 
            margin-bottom: 1.75rem;
            text-align: center;
        }

        
        @media (max-width: 576px) { 
            .form-card {
                padding: 1.5rem;
            }
            h1 {
                font-size: 1.75rem;
            }
            .navbar-nav {
                flex-direction: column;
                width: 100%;
                margin-top: 0.5rem;
            }
            .navbar-nav .nav-item {
                width: 100%;
                text-align: center;
                margin-bottom: 0.25rem;
            }
        }