 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

        body {
            background-color: #c2c7d2;
            font-family: 'Poppins', sans-serif;
        }
        .header-img img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .form-container {
            background: #ffffff; 
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            margin-top: 0;
            position: relative;
            z-index: 1;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .form-row .form-group {
            width: 48%;
        }
        .form-group label {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
        }
        .form-group label i {
            margin-right: 8px;
            color: #223a73;
        }
        .form-control {
            border-radius: 5px;
            border: 1px solid #ced4da;
            padding: 10px 15px;
            transition: border-color 0.3s;
            background: #fff;
        }
        .form-control:focus {
            border-color: #223a73;
            box-shadow: 0 0 5px rgba(106, 27, 154, 0.3);
        }
        .has-danger .form-control {
            border-color: #dc3545;
        }
        .btn-primary {
            padding: 10px 30px;
            border-radius: 20px;
            font-weight: 600;
            background-color: #223a73;
            border: none;
            transition: background-color 0.3s;
        }
        .btn-primary:hover {
            background-color: #4a1169;
        }
        .info-list {
            background: #e9ecef;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }
        .info-list li {
            margin-bottom: 10px;
            color: #555;
        }
        .scrollup {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            transition: opacity 0.3s;
        }
        .scrollup:hover {
            opacity: 0.8;
        }
        .modal-content {
            border-radius: 10px;
        }
        @media (max-width: 576px) {
            .form-row {
                flex-direction: column;
            }
            .form-row .form-group {
                width: 100%;
            }
            .form-container {
                padding: 20px;
                margin-top: -20px;
            }
        }