*{
    box-sizing: border-box;
}
.form {


    padding: 25px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    width: 100%;
}

.form input {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form input:focus {
    outline: none;
    border-color: #EF4A61;
}

.form button {
    width: 100%;
    padding: 14px;
    background-color: #EF4A61;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form button:hover {
    background-color: #d63e53;
}

/* Responsive design */
@media (max-width: 600px) {
    .form {
        padding: 15px;
    } }

        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 20px;
            max-width: 375px;
            background-color: white;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            z-index: 9999;
            display: none;
        }
    
        .cookie-content {
            padding: 20px;
        }
    
        .cookie-content h3 {
            margin: 0 0 10px 0;
            color: #222;
            font-size: 18px;
            font-weight: 600;
        }
    
        .cookie-content p {
            margin: 0 0 20px 0;
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }
    
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
    
        .cookie-btn {
            padding: 10px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: all 0.2s ease;
        }
    
        .cookie-btn.accept {
            background-color: #EF4A61;
            color: white;
        }
    
        .cookie-btn.accept:hover {
            background-color: #d63e53;
        }
    
        .cookie-btn.settings {
            background-color: #f1f1f1;
            color: #333;
        }
    
        .cookie-btn.settings:hover {
            background-color: #e5e5e5;
        }
    
        @media (max-width: 480px) {
            .cookie-popup {
                left: 10px;
                right: 10px;
                max-width: calc(100% - 20px);
            }
    
            .cookie-buttons {
                flex-direction: column;
            }     }