 .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            
        }

        .btn-login {
            background: transparent;
            color: var(--light-color);
            border: 2px solid var(--secondary-color);
        }

        .btn-register {
           background: linear-gradient(45deg, #00B7B7, #008F8F);
            color: white;
            box-shadow: 0 8px 20px rgba(29, 14, 9, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(29, 14, 9, 0.3);
            color: white;
        }
