        /* Base Styling */
        body {
            background-color: #f2f2f2;
            font-family: 'Arial', sans-serif;
        }

        .card {
            background-color: #fff;
            border-radius: 20px;
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-top: 50px;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
        }


        /* Back Icon Styling */
        .back-icon {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 32px;
            color: #ff6600;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .back-icon:hover {
            color: #e65c00;
        }

        .text-primary {
            color: #ff6600 !important;
        }


        .btn-primary {
            background-color: #ff6600;
            border-color: #ff6600;
            border-radius: 50px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #e65c00;
            border-color: #e65c00;
        }

        .btn-file-upload {
            background-color: #f8f8f8;
            border: 2px dashed #ff6600;
            padding: 10px;
            border-radius: 50px;
            display: inline-block;
            width: 100%;
            text-align: center;
            transition: background-color 0.3s ease, border-color 0.3s ease;
        }

        .btn-file-upload:hover {
            background-color: #ff6600;
            border-color: #e65c00;
        }

        .form-control {
            border-radius: 10px;
            box-shadow: none;
            border: 1px solid #ddd;
            padding: 12px;
            padding-left: 40px;
        }

        .form-control:focus {
            border-color: #ff6600;
            box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
        }

        .form-label {
            font-weight: bold;
        }

        .form-icon {
            position: absolute;
            left: 10px;
            top: 70%;
            transform: translateY(-50%);
            color: #ff6600;
            font-size: 1.5rem;
            pointer-events: none;
        }


        .footer-text {
            text-align: center;
            color: #777;
        }
        
        .footer-text a {
            color: #ff6600;
            text-decoration: none;
            margin: 0 5px; /* Adds some space between links */
        }
        
        .footer-text a:hover {
            text-decoration: underline;
        }
        
        

        .input-file-label {
            color: #ff6600;
            font-weight: bold;
        }

        .input-file {
            display: none;
        }

        .input-file:checked+.btn-file-upload {
            background-color: #ff6600;
            color: #fff;
        }

        /* Logo Container */
        .logo-container {
            position: absolute;
            top: 20px;
            left: 5%;
            transform: translateX(-50%);
        }



        /* Animation for Inputs */
        .form-control:focus,
        .btn-primary:hover {
            animation: scaleUp 0.3s ease forwards;
        }

        @keyframes scaleUp {
            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(1.05);
            }
        }

        /* Responsive Styling */
        @media (max-width: 768px) {
            .card {
                margin-top: 30px;
            }
        }