:root {
            --primary-color: #d2b680;
            --secondary-color: #f8f9fa;
            --text-color: #fff;
            --light-color: #ffffff;
        }
        
        body {
            background-color: #9f8868;
            color: var(--text-color);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .form-container {
            background-color: #353535;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
        
        .logo-space {
            height: 100px;
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }
        
        .form-title {
            color: #d2b680;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .form-subtitle {
            color: var(--text-color);
            opacity: 0.8;
            margin-bottom: 2rem;
        }
        
        .input-group-text {
            background-color: var(--primary-color);
            color: white;
            border: none;
        }
        
        .form-control, .form-select {
            border-left: none;
            padding-left: 0.5rem;
        }
        
        .form-control:focus, .form-select:focus {
            box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
            border-color: var(--primary-color);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 0.5rem 2rem;
            font-weight: 500;
        }
        
        .btn-primary:hover {
            background-color: #dab46a;
        }
        
        .file-upload {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }
        
        .file-upload-btn {
            border: 2px dashed #ced4da;
            border-radius: 5px;
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }
        
        .file-upload-btn:hover {
            border-color: var(--primary-color);
            background-color: rgba(108, 99, 255, 0.05);
        }
        
        .file-upload-input {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        #home > div.container.py-5 > div > div > div > form > div > div:nth-child(6) > div > div > i,
        #home > div.container.py-5 > div > div > div > form > div > div:nth-child(6) > div > div > small {
            color: #fff !important;
        }

        #home > div.container.py-5 > div > div > div > form > div > div:nth-child(6) > label {
            font-weight: 800;
            font-size: 1.5rem;
        }